/* --- Variáveis e Reset --- */
:root {
    --primary-color: #0a1f3d;
    /* Darker, more premium blue */
    --secondary-color: #c9a227;
    /* Gold/Metallic for VIP feel */
    --accent-red: #e63946;
    /* Keep for urgent CTAs */
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-footer {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--text-dark);
}

/* --- Header --- */
header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Slightly taller */
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--secondary-color);
}

#menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

#menu a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

#menu a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    /* More classic/premium shape */
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Menu Mobile (Escondido no Desktop) */
#btn-mobile {
    display: none;
}

/* --- Hero Section --- */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    /* Richer gradient with gold hint */
    background: radial-gradient(circle at 10% 20%, rgb(248, 250, 252) 0%, rgb(240, 244, 250) 90%);
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-video {
    flex: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--white);
    outline: 1px solid var(--secondary-color);
    /* Double border effect */
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-vip {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    /* Larger */
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid var(--secondary-color);
    /* Added border */
}

.hero h2 {
    font-size: 3rem;
    margin: 15px 0;
    line-height: 1.1;
    color: var(--primary-color);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
    /* Subtle text depth */
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cta-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    /* Gold */
    color: var(--primary-color);
    /* Dark Blue text on Gold */
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #dcb32e;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Botão CTA VIP padrão - Dourado Premium */
.btn-cta-vip {
    background: -webkit-gradient(linear, left top, right bottom, from(var(--secondary-color)), to(#dcb32e));
    background: -o-linear-gradient(top left, var(--secondary-color) 0%, #dcb32e 100%);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #dcb32e 100%);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
    border: 2px solid var(--secondary-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-cta-vip:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 10px 30px rgba(201, 162, 39, 0.7);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.7);
    background: -webkit-gradient(linear, left top, right bottom, from(#dcb32e), to(#e8c757));
    background: -o-linear-gradient(top left, #dcb32e 0%, #e8c757 100%);
    background: linear-gradient(135deg, #dcb32e 0%, #e8c757 100%);
    border-color: #dcb32e;
}

.btn-cta-vip i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* --- Logos / Social Proof --- */
.logos-proof {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logos-proof p {
    margin: 0 0 15px 0;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.logos-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-weight: 700;
    color: #555;
    font-size: 1.3rem;
}

/* --- Roadmap / Timeline --- */
.roadmap {
    padding: 100px 0;
    /* Distinct Light Gray */
    background: #f4f6f9;
    border-top: 1px solid #eaebed;
    border-bottom: 1px solid #eaebed;
}

.title-center {
    text-align: center;
    margin-bottom: 70px;
}

.title-center h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    /* Premium feel */
    letter-spacing: 1.5px;
}

.line {
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.timeline-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: #fff;
    /* Stronger Border */
    border: 1px solid #e1e4e8;
    border-bottom: 4px solid #e1e4e8;
    /* Default bottom border visible */
    border-radius: 12px;
    /* Softer corners */
    transition: 0.3s;
    /* Stronger Shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(10, 31, 61, 0.12);
    /* Blue-ish shadow */
    border-color: var(--primary-color);
    border-bottom: 4px solid var(--secondary-color);
}

.timeline-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    background: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 2px solid #f0f0f0;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-light);
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    /* White to contrast with Roadmap */
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    /* Slight contrast card */
    padding: 40px 30px;
    border-radius: 12px;
    /* Stronger Shadow */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e1e1;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative Gold Top Border for Card */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
}

.quote-icon {
    font-size: 2rem;
    color: #e0e0e0;
    /* Subtle */
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.author span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* --- About Section (Refined) --- */
.about {
    padding: 100px 0;
    /* Gray again */
    background: #f4f6f9;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Mentor Page Specific */
.mentor-header {
    margin-top: 80px;
    padding: 100px 0;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.mentor-content {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    padding: 40px 30px;
    background: #fff;
    /* Defined Border */
    border: 1px solid #dee2e6;
    border-radius: 12px;
    transition: 0.3s;
    /* Defined Shadow */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    /* Uniform height */
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.icon-lg {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    /* Frame style */
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Decorative Gold corner */
.bio-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    z-index: 0;
}

.bio-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
    z-index: 0;
}

/* --- Carousel Styles (Mentor Page) --- */
.carousel-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-animation: carousel-scroll 30s linear infinite;
    animation: carousel-scroll 30s linear infinite;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.carousel-track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.carousel-slide {
    -webkit-box-flex: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 350px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -webkit-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.carousel-slide:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

/* Alinhamento especial para fotos que precisam mostrar a cabeça */
.carousel-slide.align-top img {
    -o-object-position: top center;
    object-position: top center;
}

/* Animação infinita */
@-webkit-keyframes carousel-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        /* Move exatamente metade (4 fotos + gaps) */
        -webkit-transform: translateX(calc(-350px * 4 - 30px * 4));
        transform: translateX(calc(-350px * 4 - 30px * 4));
    }
}

@keyframes carousel-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        /* Move exatamente metade (4 fotos + gaps) */
        -webkit-transform: translateX(calc(-350px * 4 - 30px * 4));
        transform: translateX(calc(-350px * 4 - 30px * 4));
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .carousel-slide {
        width: 300px;
        height: 240px;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-300px * 4 - 30px * 4));
        }
    }
}

@media (max-width: 768px) {
    .carousel-track {
        gap: 20px;
        animation-duration: 25s;
    }

    .carousel-slide {
        width: 280px;
        height: 220px;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-280px * 4 - 20px * 4));
        }
    }
}

@media (max-width: 480px) {
    .carousel-track {
        gap: 15px;
        animation-duration: 20s;
    }

    .carousel-slide {
        width: 250px;
        height: 200px;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-250px * 4 - 15px * 4));
        }
    }
}

/* --- Features Section (Refined) --- */
.features {
    padding: 80px 0;
    background: #fafafa;
}

.feature-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
    flex: 1;
}

.feature-list h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.feature-list ul li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--secondary-color);
    background: #f9f9f9;
}

.accordion-header i {
    transition: 0.3s;
    font-size: 0.9rem;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-body p {
    margin-bottom: 20px;
    color: var(--text-light);
    padding-top: 10px;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.copy a {
    color: var(--secondary-color);
}

/* --- WhatsApp Flutuante --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b85a;
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    .header-flex {
        padding: 0 20px;
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 80px;
        right: 0;
        background: var(--white);
        height: 0;
        transition: 0.4s;
        z-index: 999;
        visibility: hidden;
        overflow-y: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    #nav.active #menu {
        height: auto;
        visibility: visible;
        padding-bottom: 20px;
    }

    #nav.active #menu li {
        text-align: center;
    }

    #menu a {
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        display: block;
    }

    #btn-mobile {
        display: flex;
        padding: .5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: .5rem;
    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
        color: var(--primary-color);
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    .hero-flex,
    .feature-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-video {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--secondary-color);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.modal-header p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
    box-sizing: border-box;
    /* Fix for padding issue */
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 31, 61, 0.1);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* --- Privacy Page Styles --- */
.privacy-content {
    padding: 80px 0;
    background: #fff;
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.privacy-text h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.privacy-text h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.privacy-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.privacy-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.privacy-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list i {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-box {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-box p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-box i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-box a:hover {
    color: var(--secondary-color);
}

.divider {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 50px 0;
}

.privacy-footer {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.privacy-footer p {
    margin: 10px 0;
    font-size: 1rem;
}

.privacy-footer em {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Cookie Banner Styles --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0a1f3d 0%, #163a5f 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid var(--secondary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.cookie-link:hover {
    color: #dcb32e;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 25px;
    font-size: 0.9rem;
    min-width: 100px;
    white-space: nowrap;
}

/* Responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }

    .cookie-text i {
        font-size: 2rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-cookie {
        width: 100%;
        padding: 12px;
    }

    /* Logos responsivas - Mobile */
    .logo-img,
    .logo-footer {
        height: 50px;
    }
}

/* Media Query - Tablets (entre 769px e 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .logo-img,
    .logo-footer {
        height: 60px;
    }
}