/* =========================
   ROTEIRO PREMIUM
========================= */

.route-section{
  padding:70px 0;
  background:#ffffff;
  color:#0b2130;
}

/* CONTAINER */
.destinations{
  width:100%;
  max-width:100%;
}

/* VIDEO + ROTEIRO */
.destination-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:start;
  padding:0 0px;
}

/* CARD */
.route-card{
  width:100%;
  background:transparent;

  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;

  padding:24px;

  box-shadow:0 18px 50px rgba(0,0,0,0.08);
}

/* INTRO */
.route-highlight{
  color:#0b2130;
  line-height:1.7;
  font-weight:500;
  font-size:14px;

  margin-bottom:10px;

  padding:14px;

  border-left:4px solid #18d3df;

  background:rgba(24,211,223,0.08);

  border-radius:12px;
}

/* TITULO */
.route-card h3{
  font-size:18px;
  color:#0b2130;
  margin-bottom:14px;
}

/* LISTA */
.route-list{
  list-style:none;

  padding:0;

  margin:0 0 10px;

  display:flex;
  flex-direction:column;

  gap:8px;
}

.route-list li{
  padding:10px 12px;

  border-radius:10px;

  background:#f7fbfc;

  border:1px solid rgba(0,0,0,0.05);

  color:#2c3e50;

  font-size:13px;
  line-height:1.4;

  transition:0.2s;
}

.route-list li strong{
  color:#18d3df;
}

.route-list li:hover{
  transform:translateX(3px);
}

/* ALERTAS */
.route-warning{
  margin-top:5px;

  font-size:10px;
  line-height:1.4;

  color:#6b7c86;

  background:transparent;

  border:1px solid rgba(24,211,223,0.18);

  padding:12px 14px;

  border-radius:10px;
}

/* VIDEO */
.destination-card{
  position:relative;

  width:100%;

  overflow:hidden;

  border-radius:20px;
}

.destination-card video{
  width:100%;
  height:100%;

  min-height:320px;

  object-fit:cover;

  display:block;

  border-radius:20px;
}

/* OVERLAY */
.destination-overlay{
  position:absolute;
  inset:0;

  display:flex;
  align-items:flex-end;

  padding:24px;

  z-index:2;

  pointer-events:none;
}

.destination-overlay::before{
  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:0;

  height:45%;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    transparent
  );

  z-index:-1;
}

.destination-overlay h3{
  color:#fff;

  font-size:24px;

  margin:0;
}

/* BOTÕES VIDEO */
.video-btn{
  position:absolute;

  z-index:5;

  width:52px;
  height:52px;

  border:none;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  background:rgba(255,255,255,.2);

  backdrop-filter:blur(10px);

  transition:.25s;
}

.video-btn:hover{
  transform:scale(1.08);
}

.video-btn.play{
  left:50%;
  top:50%;

  transform:translate(-50%, -50%);
}

.video-btn.pause{
  right:18px;
  top:18px;

  display:none;
}

.video-btn svg{
  width:20px;
  fill:#fff;
}

.video-btn.pause{
  color:#fff;
  font-size:20px;
}

.route-passeio{
  width:100%;
  padding:0 20px;
  max-width:1200px;
  margin:0 auto;
}
.route-passeio h3{
  text-align:left;
  color:#0b2130;
  margin:28px 0 14px;
}
/* =========================
   DESKTOP
========================= */

@media (min-width:992px){

  .route-section{
    padding:90px 20px;
  }

  .destination-grid{
    grid-template-columns:1.1fr 1fr;
    gap:36px;
  }

  .route-card{
    padding:34px;
    border-radius:22px;

    height:fit-content;
  }

  .route-highlight{
    font-size:15px;
    padding:18px 20px;
  }

  .route-card h3{
    font-size:22px;
  }

  .route-list{
    gap:0;
  }

  .route-list li{
    background:transparent;

    border:none;

    border-bottom:1px solid rgba(0,0,0,0.08);

    border-radius:0;

    padding:14px 0;

    font-size:15px;
  }

  .route-list li:hover{
    transform:translateX(5px);
  }

  .route-warning{
    font-size:13px;
    padding:13px 15px;
  }

  .destination-card video{
    min-height:720px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .destination-grid{
    display:flex;
    flex-wrap:wrap;

    gap:12px;

    align-items:flex-start;
  }

  /* VIDEO */
  .destination-card{
    width:48%;

    height:260px;

    border-radius:16px;
  }

  .destination-card video{
    min-height:260px;
  }

  /* CARD DIREITA */
  .route-card{
    width:calc(52% - 12px);

    padding:12px;

    border-radius:16px;

    display:flex;
    flex-direction:column;
  }

  .route-highlight{
    font-size:9px;
    line-height:1.5;

    padding:8px
  }

  .route-card h3{
    font-size:14px;
    margin-bottom:10px;
  }

  /* WARNINGS */
  .route-warning{
    font-size:9px;
    padding:7px;
  }

  /* LISTA EMBAIXO */
  .route-list{
    width:100%;

    margin-top:10px;

    order:999;

    gap:0;
  }

  .route-list li{
    font-size:11px;

    padding:10px 0;

    background:transparent;

    border:none;

    border-bottom:1px solid rgba(0,0,0,.08);

    border-radius:0;
  }

  .destination-overlay{
    padding:12px;
  }

  .destination-overlay h3{
    font-size:15px;
  }
}