:root{

    --azul:#123B5D;

    --verde:#2C8E8B;

    --terracota:#C9794A;

    --offwhite:#FAF7F2;

}

/* =========================
   CONFIGURAÇÕES GERAIS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#FAF7F2;

    font-family:Poppins, sans-serif;

}

/* =========================
        HEADER
========================= */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

}

/* =========================
        MENU
========================= */

nav{

    height:95px;

    width:100%;

    background:#FFFFFF;

    border-radius:0;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 60px;

    box-shadow:0 10px 35px rgba(0,0,0,.10);

}

/* =========================
        LOGO
========================= */

.logo{
    flex:1;
    display:flex;
    align-items:center;
    margin-right:70px;
}

.logo img{

    height:80px;
    width:auto;

}

/* =========================
        MENU
========================= */

nav ul{

    flex:2;
    
    display:flex;

    gap:55px;

    list-style:none;
    
    margin:auto;

}

nav ul li a{

    color:#194D2E;

    font-weight:600;

    font-size:17px;

    text-decoration:none;

    transition:.3s;

}

nav ul li a:hover{

    color:#7BC943;

}

/* =========================
      BOTÃO
========================= */

.botao{

    background:#123B5D;

    color:white;

    padding:16px 34px;

    border-radius:999px;

    font-weight:600;

    letter-spacing:.3px;

    box-shadow:0 8px 20px rgba(18,59,93,.35);
}

.botao:hover{

    background:var(--verde);

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(44,142,139,.30);

}

.botao-whats{

    background:#29D058;

    padding:16px 32px;

    border-radius:50px;

    color:white;

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

}

.botao-whats:hover{

    background:#1ebe5d;

    transform:translateY(-2px);

}

/* ===========================
   HERO
=========================== */

.hero,
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100vh; /* era 105vh - gerava scroll extra na primeira dobra */
}

.heroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}

.hero-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55),
        rgba(0,0,0,.20),
        transparent
    );
    z-index:1;
}

.conteudo{
    position:absolute;
    top:47%;
    left:120px;
    transform:translateY(-50%);
    z-index:2;
    color:white;
    max-width:650px;
}

.conteudo span{
    color:#F3B27A;
    letter-spacing:4px;
    text-transform:uppercase;
}

.conteudo h1{
    font-size:54px;
    margin:18px 0;
    line-height:1.08;
    max-width:650px;
    font-weight:700;
}

.conteudo p{
    font-size:22px;
    margin-bottom:35px;
}

/* SETAS */

.hero .swiper-button-next,
.hero .swiper-button-prev{

    color:white;

}

.hero .swiper-pagination-bullet{

    background:white;

}

.hero .swiper-pagination-bullet-active{

    background:white;

}

.destinos{

    padding:60px 80px 60px; /* era 100px embaixo */

}

.destinos-header{

    text-align:center;

    margin-bottom:50px;

}

.destinos-chip{

    display:inline-block;

    color:#7BC943;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:12px;

}

.destinos h2{

    color:var(--azul);

    font-size:42px;

    margin-bottom:10px;

}

.destinos .swiper-slide{

    background:transparent;

    border-radius:0;

    overflow:visible;

    transition:.4s;

    box-shadow:none;

}

.destinos .swiper-wrapper{

    background:transparent !important;

    box-shadow:none !important;

}

.meuSwiper{

    background:transparent !important;

    box-shadow:none !important;

    border:none !important;

}

.destino-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:none;

    transition:.4s;

}

.destinos .swiper-slide:hover .destino-card{

    transform:translateY(-10px);

}

.destino-imagem{

    overflow:hidden;

}

.destino-imagem img{

    width:100%;

    height:290px;

    object-fit:cover;

    transition:transform .5s ease;

}

.destinos .swiper-slide:hover .destino-imagem img{

    transform:scale(1.05);

}

.destino-info{

    padding:24px 24px 28px;

}

.destino-info h3{

    font-size:24px;

    color:var(--azul);

    margin-bottom:8px;

}

.destino-info p{

    color:#5f6f7a;

    margin-bottom:16px;

}

.destino-info a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#194D2E;

    font-weight:700;

    text-decoration:none;

}

.destino-info a span{

    display:inline-block;

    transition:.3s;

}

.destinos .swiper-slide:hover .destino-info a span{

    margin-left:6px;

}

/* =========================
      EXPERIÊNCIAS
========================= */

.experiencias{

    padding:70px 80px 110px; /* era 100px em cima */

    background:#FFFFFF;

}

/* CABEÇALHO */

.experiencias-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 55px;

}

.experiencias-chip{

    color:#7BC943;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:12px;

}

.experiencias-header h2{

    color:var(--azul);

    font-size:42px;

    margin-bottom:16px;

}

.experiencias-subtitulo{

    color:#5f6f7a;

    font-size:18px;

    line-height:1.6;

}

/* GRID */

.experiencias-grid{

    max-width:1400px;

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:24px;

}

/* CARD */

.experiencia-card{

    background:#FAF7F2;

    border-radius:24px;

    padding:34px 28px 30px;

    min-height:290px;

    display:flex;

    flex-direction:column;

    transition:.35s;

    border:1px solid rgba(18,59,93,.06);

}

.experiencia-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

/* ÍCONE */

.experiencia-icone{

    width:58px;

    height:58px;

    border-radius:18px;

    background:#E8F4E5;

    color:var(--verde);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:25px;

}

/* TÍTULO */

.experiencia-card h3{

    color:var(--azul);

    font-size:21px;

    margin-bottom:12px;

}

/* TEXTO */

.experiencia-card p{

    color:#667782;

    font-size:15px;

    line-height:1.6;

    margin-bottom:22px;

}

/* LINK */

.experiencia-card a{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#194D2E;

    font-weight:700;

    text-decoration:none;

}

.experiencia-card a span{

    transition:.3s;

}

.experiencia-card:hover a span{

    margin-left:6px;

}

/* CTA */

.experiencias-cta{

    max-width:900px;

    margin:65px auto 0;

    padding:45px 30px;

    text-align:center;

    background:var(--azul);

    border-radius:28px;

    color:white;

}

.experiencias-cta h3{

    font-size:28px;

    margin-bottom:10px;

}

.experiencias-cta p{

    font-size:17px;

    margin-bottom:25px;

    color:rgba(255,255,255,.85);

}

.experiencias-cta .botao{

    display:inline-block;

    background:white;

    color:var(--azul);

    box-shadow:none;

    padding:18px 40px; /* botão de CTA final um pouco maior */

    font-size:17px;

}

.experiencias-cta .botao:hover{

    background:var(--verde);

    color:white;

}

/* =========================
      FOOTER
========================= */

footer{
    background:var(--azul);
    color:white;
    padding:70px 80px 25px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 1fr 1.2fr 1fr;
    gap:70px;
    align-items:start;
}

.footer-brand img{
    width:230px;
    height:auto;
    margin-bottom:22px;
    filter:brightness(0) invert(1);
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.7;
    max-width:280px;
}

.footer-col h3{
    font-size:18px;
    margin-bottom:22px;
    color:white;
}

.footer-label{
    color:rgba(255,255,255,.65);
    font-size:13px;
    margin-bottom:10px;
}

.footer-col a{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.85);
    text-decoration:none;
    font-size:14px;
    margin-bottom:14px;
    transition:.3s;
}

.footer-col a:hover{
    color:#7BC943;
}

.footer-col a i{
    color:var(--terracota);
    width:18px;
    text-align:center;
}

.contact-item {
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
}

.contact-item > i {
    color:var(--terracota);
    width:18px;
    margin-top:4px;
    text-align:center;
}

.email-list {
    display:flex;
    flex-direction:column;
    gap:8px;
}

.email-list a {
    display:block;
    color:rgba(255,255,255,.85);
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.email-list a:hover {
    color:#7BC943;
}

.footer-social p{
    color:rgba(255,255,255,.7);
    font-size:14px;
    line-height:1.6;
    margin-bottom:20px;
    max-width:210px;
}

/* Redes sociais do footer */
.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    text-decoration: none;
    flex-shrink: 0;
    transition: .3s;
}

.social-links a:hover {
    background: var(--verde);
    transform: translateY(-3px);
}

.social-links a i {
    color: white;
    font-size: 18px;
    width: auto;
}

.footer-bottom{
    max-width:1200px;
    margin:55px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.55);
    font-size:13px;
}

/* =========================
   SOBRE - HOME
========================= */

.sobre-home {
    background: #FAF7F2;
    padding: 90px 7%;
}

.sobre-home-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.sobre-home-texto {
    max-width: 560px;
}

.sobre-home-chip {
    display: inline-block;
    margin-bottom: 18px;
    color: #C9794A;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sobre-home-texto h2 {
    margin: 0 0 24px;
    color: #123B5D;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
}

.sobre-home-texto p {
    margin-bottom: 16px;
    color: #4d5c66;
    font-size: 1.05rem;
    line-height: 1.8;
}

.sobre-home-frase {
    margin-top: 24px;
    color: #123B5D;
    font-size: 1.12rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.7;
}

.sobre-home-texto .botao {
    display: inline-block;
    margin-top: 18px;
}

.sobre-home-fotos {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
}

.sobreSwiper {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
}

.sobreSwiper .swiper-slide {
    aspect-ratio: 4 / 5;
}

.sobreSwiper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 28px;
}

.sobre-pagination {
    position: relative;
    margin-top: 18px;
    text-align: center;
}

.sobre-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #123B5D;
    opacity: 0.3;
}

.sobre-pagination .swiper-pagination-bullet-active {
    background: #C9794A;
    opacity: 1;
}

@media (max-width: 768px) {

    .sobre-home {
        padding: 70px 6%;
    }

    .sobre-home-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sobre-home-texto h2 {
        font-size: 2.4rem;
    }

    .sobre-home-fotos {
        max-width: 360px;
        margin: 0 auto;
    }

}

/* =====================================================
   PÁGINA SOBRE
===================================================== */

/* HERO */

.sobre-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 80px 120px;
    background:
        linear-gradient(
            90deg,
            rgba(18, 59, 93, 0.88),
            rgba(18, 59, 93, 0.45),
            rgba(18, 59, 93, 0.10)
        ),
        url("../images/sobre-hero.jpg");
    background-size: cover;
    background-position: center;
}

.sobre-hero-conteudo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    color: white;
}

.sobre-hero-imagem {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.sobre-hero-imagem img {
    width: 100%;
    max-width: 460px;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.sobre-hero-conteudo span {
    display: block;
    color: #F3B27A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.sobre-hero-conteudo h1 {
    font-size: 58px;
    line-height: 1.08;
    margin: 0 0 25px;
    color: white;
}

.sobre-hero-conteudo p {
    font-size: 21px;
    line-height: 1.6;
    max-width: 620px;
    color: white;
}

.sobre-chip {
    display: inline-block;
    color: #7BC943;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* =====================================================
   LINHA DO TEMPO
===================================================== */

.timeline-section {
    background: var(--offwhite);
    padding: 120px 80px;
}

.timeline-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.timeline-header h2 {
    color: var(--azul);
    font-size: 46px;
    line-height: 1.15;
    margin: 0;
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(18,59,93,.15), rgba(18,59,93,.55), rgba(18,59,93,.15));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--verde);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(123, 201, 67, 0.15);
    transform: translate(-50%, -50%);
}

.timeline-item-reverse .timeline-visual {
    grid-column: 2;
}

.timeline-item-reverse .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-visual {
    min-height: 420px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

/* 01 - O MAR */
.timeline-visual-1 {
    background-image: url("../images/navio-deb.jpg");
}

/* 02 - O MUNDO */
.timeline-visual-2 {
    background-image: url("../images/bali-deb.jpg");
}

/* 03 - PORTUGAL */
.timeline-visual-3 {
    background-image: url("../images/portugal-deb.jpg");
}

/* 04 - DESBRAVANDO O MUNDO */
.timeline-visual-4 {
    background-image: url("../images/santorini-deb.jpg");
}

.timeline-content {
    background: white;
    border: 1px solid rgba(18,59,93,.08);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(18,59,93,.06);
}

.timeline-number {
    display: inline-block;
    color: #F3B27A;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    color: var(--azul);
    font-size: 32px;
    margin: 0 0 18px;
}

.timeline-content p {
    color: #586b76;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   PORTUGAL
===================================================== */

.sobre-portugal {
    padding: 120px 80px;
    background: white;
}

.sobre-destaque {
    background: var(--azul);
    color: white;
    padding: 60px;
    min-height: 360px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(18,59,93,.15);
}

.sobre-destaque > span {
    color: #F3B27A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.sobre-destaque h3 {
    color: white;
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.sobre-destaque p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.7;
}

/* =====================================================
   DESBRAVANDO
===================================================== */

.sobre-desbravando {
    padding: 120px 30px;
    background:
        linear-gradient(
            rgba(18,59,93,.92),
            rgba(18,59,93,.92)
        ),
        url("../images/japao.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.sobre-desbravando-conteudo {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-desbravando .sobre-chip {
    color: #7BC943;
}

.sobre-desbravando h2 {
    color: white;
    font-size: 46px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.sobre-desbravando p {
    max-width: 700px;
    margin: 0 auto 18px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.7;
}

.sobre-desbravando .botao {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

/* =====================================================
   COMPROMISSO
===================================================== */

.compromisso {
    padding: 110px 80px;
    background: var(--offwhite);
}

.compromisso .destinos-header {
    text-align: center;
    margin-bottom: 50px;
}

.compromisso-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.compromisso-card {
    background: white;
    padding: 35px 30px;
    min-height: 230px;
    border-radius: 25px;
    border: 1px solid rgba(18,59,93,.08);
    transition: .3s;
}

.compromisso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.compromisso-card i {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: #EAF4E7;
    color: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.compromisso-card h3 {
    color: var(--azul);
    font-size: 19px;
    margin: 0 0 12px;
}

.compromisso-card p {
    color: #667783;
    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================
   CTA
===================================================== */

.sobre-cta {
    background: var(--azul);
    color: white;
    text-align: center;
    padding: 90px 30px;
}

.sobre-cta h2 {
    color: white;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.sobre-cta p {
    color: rgba(255,255,255,.75);
    margin-bottom: 30px;
}

.sobre-cta .botao {
    display: inline-block;
    text-decoration: none;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

    .sobre-hero {
        grid-template-columns: 1fr;
        padding: 80px 60px;
    }

    .sobre-hero-imagem {
        justify-content: flex-start;
    }

    .experiencias-grid{

        grid-template-columns:repeat(2, 1fr);

    }

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }

    .footer-brand{
        grid-column:1 / -1;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 24px;
        transform: none;
    }

    .timeline-item,
    .timeline-item-reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 50px;
    }

    .timeline-item::after {
        left: 24px;
    }

    .timeline-visual,
    .timeline-item-reverse .timeline-visual,
    .timeline-item-reverse .timeline-content {
        grid-column: auto;
    }

    .timeline-item-reverse .timeline-content {
        text-align: left;
    }

    .compromisso-grid{
        grid-template-columns: 1fr 1fr;
    }

    .sobre-hero-conteudo{
        margin-left: 60px;
        margin-right: 40px;
    }

}

@media(max-width:768px){

    nav{
        padding:0 24px;
    }

    nav ul{
        display:none; /* recomendo evoluir para um menu hambúrguer aqui */
    }

    .conteudo{
        left:30px;
        max-width:90%;
    }

    .conteudo h1{
        font-size:34px;
    }

    .conteudo p{
        font-size:17px;
    }

    .destinos,
    .experiencias{
        padding-left:24px;
        padding-right:24px;
    }

}

@media(max-width:600px){

    .experiencias{

        padding:70px 25px 80px;

    }

    .experiencias-header h2{

        font-size:32px;

    }

    .experiencias-grid{

        grid-template-columns:1fr;

    }

    .sobre-hero {
        min-height: 600px;
    }

    .sobre-hero-conteudo {
        margin-left: 30px;
        margin-right: 30px;
    }

    .sobre-hero-conteudo h1 {
        font-size: 40px;
    }

    .timeline-section,
    .sobre-portugal,
    .compromisso {
        padding: 80px 25px;
    }

    .timeline-header h2 {
        font-size: 34px;
    }

    .timeline-item,
    .timeline-item-reverse {
        padding-left: 35px;
    }

    .timeline-content h3 {
        font-size: 26px;
    }

    .sobre-desbravando {
        padding: 80px 25px;
    }

    .sobre-desbravando h2 {
        font-size: 35px;
    }

    .compromisso-grid {
        grid-template-columns: 1fr;
    }

    footer{
        padding:50px 30px 25px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        margin-top:40px;
    }

}

