/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark:   #1a5e2e;
    --green-mid:    #2a7d42;
    --teal:         #009baa;
    --teal-dark:    #007a87;
    --orange:       #f47b20;
    --orange-dark:  #d96810;
    --yellow:       #f5d000;
    --white:        #ffffff;
    --gray-light:   #f0f2f0;
    --text-dark:    #333333;
    --text-mid:     #555555;
    --text-gray:    #d5d5d5;
}

body {
    font-family: "termina", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #d5d5d5;
}

/* =====================================================
   BOTÃO LARANJA (CTA)
===================================================== */
.btn-orange {
    background-color: var(--orange);
    color: #fff;
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    text-decoration: none;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    color: #fff;
    transform: scale(1.04);
}

/* =====================================================
   TIPOGRAFIA COMPARTILHADA
===================================================== */
.title-white {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 6.5rem);
    color: var(--text-gray);
    line-height: 1.1;
    text-align: left;
    margin-top: 50px;
}

.title-green {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 3rem);
    color: var(--green-dark);
    line-height: 1.1;
    text-transform: uppercase;
}

.title-orange {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 3.9rem);
    color: var(--orange);
    line-height: 1.1;
    text-transform: uppercase;
}

.title-yellow {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: clamp(2.34rem, 4.55vw, 3.64rem);
    color: var(--yellow);
    line-height: 1.1;
    text-transform: uppercase;
}

.body-text {
    font-family: "termina", sans-serif;
    font-weight: 300;
    font-size: 1.24rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.body-text.white {
    color: #d5d5d5;
}

.body-bold {
    font-weight: 700;
    color: var(--green-dark);
}

/* =====================================================
   SEÇÃO 1: HERO
===================================================== */
#hero {
    background-image: url('img/banner.webp');
    background-size: cover;
    background-position: center top;
    min-height: 680px;
    position: relative;
    padding: 0 0 60px;
}

.hero-inner {
    min-height: 680px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-topbar {
    padding: 18px 30px;
    background-color: var(--green-dark);
    margin-bottom: 50px;
}

.hero-logo {
    height: 40px;
    width: auto;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-diversao-logo {
    max-width: 320px;
    margin-bottom: 16px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--green-dark);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 18px;
}

.hero-badge-logo {
    height: 22px;
    filter: brightness(10);
}

.hero-badge span {
    color: #fff;
    font-weight: 700;
    font-size: 1.11rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.hero-list li {
    color: #fff;
    font-size: 1.14rem;
    font-weight: 600;
    padding: 4px 0 4px 24px;
    position: relative;
}

.hero-list li::before {
    content: "\2714";
    color: var(--yellow);
    position: absolute;
    left: 0;
    font-size: 1.04rem;
}

.hero-cta {
    align-self: flex-start;
}

/* =====================================================
   SEÇÃO 2: SOBRE (branco)
===================================================== */
.section-white {
    padding: 80px 0;
}

#sobre {
    background-image: url('img/bg-green.webp');
    background-size: cover;
}

.pillar-box {
    background-color: #f5f0e8;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
}

.pillar-icon {
    font-size: 2.6rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.pillar-box p {
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 1.11rem;
    color: var(--green-dark);
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
}

/* =====================================================
   SEÇÃO 3: PASSAPORTES (cinza claro)
===================================================== */
#passaportes-geral {
    background-image: url('img/bg-gray.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

#passaportes a {
    display: block;
}

#passaportes a img {
    transition: transform 0.3s ease;
    display: block;
}

#passaportes a:hover img {
    transform: scale(1.1);
}

.section-gray {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.pass-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pass-card-img {
    overflow: hidden;
    line-height: 0;
}

.pass-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.pass-card:hover .pass-card-img img {
    transform: scale(1.1);
}


.pass-card-img--orange { border-top: 6px solid var(--orange); }
.pass-card-img--teal   { border-top: 6px solid var(--teal); }
.pass-card-img--green  { border-top: 6px solid var(--green-mid); }

.pass-card-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pass-card-title {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 1.43rem;
    color: var(--green-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pass-card-sub {
    font-size: 1.11rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.pass-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pass-list li {
    font-size: 1.14rem;
    color: var(--text-dark);
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.pass-list li:last-child { border-bottom: none; }

.pass-list li::before {
    content: "\2022";
    color: var(--orange);
    font-weight: 900;
    position: absolute;
    left: 0;
}

/* =====================================================
   SEÇÃO 4: VANTAGENS (fundo water)
===================================================== */
#vantagens {
    padding-bottom: 340px;
}

.section-water {
    background-image: url('img/bg-water.webp');
    background-size: cover;
    padding: 260px 0 60px;
    position: relative;
    z-index: 9;
    margin-top: -280px;
    background-position: top;
}

@media (min-width: 2000px) {
    .section-water {
        padding: 300px 0 60px;
    }
}

.section-water .container {
    position: relative;
}

.vantagem-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    height: 100%;
}

.vantagem-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.82rem;
    color: #fff;
}

.vantagem-title {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 1.24rem;
    color: var(--green-dark);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vantagem-desc {
    font-size: 1.11rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   SEÇÃO 5: COMO FUNCIONA (teal)
===================================================== */
.section-teal {
    background-image: url('img/bg-green.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    
    margin-top: -280px;
}

#como-funciona img {
    margin-bottom: 50px;
}

.section-teal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 130, 145, 0.88);
}

.section-teal .container {
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 3.9rem;
    color: var(--yellow);
    line-height: 1;
}

.step-label {
    font-family: "termina", sans-serif;
    font-weight: 600;
    font-size: 1.11rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.04em;
    margin: 0;
}

/* =====================================================
   SEÇÃO 6: TRANSPARÊNCIA — usa .section-white
===================================================== */
.img-circle {
    border-radius: 50%;
    width: 380px;
    max-width: 100%;
    height: 380px;
    object-fit: cover;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    padding: 14px 0;
    text-transform: uppercase;
}

.check-list li:last-child { border-bottom: none; }

.check-list .bi {
    font-size: 1.95rem;
    color: var(--green-dark);
    flex-shrink: 0;
}

#contato, #transparencia {
    background-image: url('img/bg-gray.webp');
}

/* =====================================================
   SEÇÃO 7: CONTATO — usa .section-gray
===================================================== */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "termina", sans-serif;
    font-size: 1.24rem;
    color: var(--text-dark);
    padding: 10px 0;
    word-break: break-all;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list .bi {
    font-size: 1.56rem;
    color: var(--green-dark);
    flex-shrink: 0;
}

.wam-parks-logo {
    height: 50px;
    width: auto;
    display: block;
}

/* =====================================================
   SEÇÃO 8: FOOTER CTA (verde escuro)
===================================================== */
.section-footer {
    background-image: url('img/bg-footer.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.section-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(20, 70, 30, 0.25);
}

.section-footer .container {
    position: relative;
}

.footer-cta-title {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 3.9rem);
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-cta-sub {
    font-family: "termina", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #fff;
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media (max-width: 991px) {
    #hero { min-height: 520px; }
    .hero-inner { min-height: 520px; }
    .hero-right { align-items: center; text-align: center; }
    .hero-diversao-logo { max-width: 240px; }
    .hero-cta { align-self: center; }

    .img-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    #transparencia .col-lg-5 {
        padding: 0 50px;
    }

    #sobre .container,
    #como-funciona .container {
        width: 99%;
        max-width: 99%;
    }

    .section-white,
    .section-gray,
    .section-teal,
    .section-footer {
        padding: 50px 0;
    }

    .title-green,
    .title-yellow {
        font-size: 2.21rem;
    }

    .step-number { font-size: 2.86rem; }

    .hero-diversao-logo { max-width: 200px; }
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}   