.elementor-6 .elementor-element.elementor-element-8dcf8ac{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6 .elementor-element.elementor-element-5b7a719{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-5b7a719 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-navy: #1e1b4b;
            --color-gold: #d4af37;
            --color-gold-light: #f0e5c5;
            --color-navy-light: #312e5f;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0;
        }

        header .logo {
            height: 60px !important;
            width: auto;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--color-navy);
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--color-gold);
        }

        .btn-primary {
            background: var(--color-navy);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: var(--color-gold);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-navy);
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding-bottom: 1rem;
        }

        .mobile-nav.active {
            display: flex;
        }
        
        /* Menu desktop – espaçamento entre os itens */
        #desktop-nav {
            display: flex;
            align-items: center;
            gap: 2rem;        /* ajuste aqui: 1.5rem, 2.5rem, etc */
        }
        
        #desktop-nav a {
            white-space: nowrap; /* evita quebrar o texto em duas linhas */
        }


        /* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    color: var(--color-navy);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.hero-text {
    color: #374151;
    margin-bottom: 2.5rem;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), rgba(30, 27, 75, 0.2));
    border-radius: 1rem;
    filter: blur(2rem);
    transition: filter 0.3s;
    width: 90%;
    height: auto;
}
.image-wrapper:hover .image-glow {
    filter: blur(3rem);
}

.image-wrapper img {
    position: relative;
    width: 90%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.bg-gray {
    background: #f9fafb;
}

.bg-gold-light {
    background: rgba(212, 175, 55, 0.05);
}

.bg-navy {
    background: var(--color-gold);
    color: white;
}

.bg-navy {
    background: var(--color-gold);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--color-navy);
    max-width: 56rem;
    margin: 0 auto 1rem;
}

.text-white {
    color: var(--color-navy) !important;
}

.section-divider {
    width: 4rem;
    height: 0.25rem;
    background: var(--color-navy);
    margin: 0 auto;
}

/* About Section */
.about-text {
    margin-bottom: 2rem;
    color: #374151;
    font-size: 1.4rem;
}

.text-navy {
    color: var(--color-navy);
    font-weight: 600;
}

.about-highlight {
    font-size: 1.125rem;
    color: var(--color-navy);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-2-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* For Who Section */
.for-who-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.for-who-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-navy);
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.for-who-item .check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.for-who-item span {
    color: white;
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.text-center {
    text-align: center;
}

.icon-circle {
    width: 5rem;
    height: 5rem;
    background: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-circle svg {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-gold);
}

.step-badge {
    font-size: 0.875rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-text {
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.card-text-small {
    color: #4b5563;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.list-small {
    list-style: none;
    font-size: 0.875rem;
    color: #4b5563;
    text-align: left;
    margin-top: 0.75rem;
}

.list-small li {
    margin-bottom: 0.25rem;
}

/* Video Section */
.video-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 1rem auto 0;
}

.video-container {
    max-width: 48rem;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--color-navy);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.video-player:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Testimonials */
.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--color-navy);
    font-weight: 600;
}

/* Why Different */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-navy);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.why-item .check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.why-item span {
    color: #e5e7eb;
}

/* Benefits */
.benefits-grid {
    max-width: 64rem;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sparkle-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-item span {
    color: #374151;
}

/* Investment */
.investment-subtitle {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-top: 1rem;
}

.investment-container {
    max-width: 64rem;
    margin: 0 auto;
}

.investment-card {
    background: linear-gradient(to bottom right, var(--color-navy), rgba(30, 27, 75, 0.9));
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.investment-title {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.investment-items {
    margin-bottom: 2.5rem;
}

.investment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.investment-item .check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.investment-item span {
    color: white;
}

.investment-price {
    text-align: center;
    margin-bottom: 2rem;
}

.investment-price p:first-child {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.investment-cta {
    text-align: center;
}

.cta-text {
    margin-bottom: 1.5rem;
    color: white;
}

.online-schedule {
    text-align: center;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
}

.online-schedule p {
    color: #374151;
    margin-bottom: 1rem;
}

.online-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.online-link:hover {
    color: var(--color-gold);
}

.online-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* FAQ */
.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    color: var(--color-navy);
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question span:first-child {
    padding-right: 2rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-navy);
    transition: color 0.3s;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #4b5563;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    line-height: 1.6;
}

/* CTA Section */
.cta-subtitle {
    font-size: 1.25rem;
    color: #333;
    max-width: 32rem;
    margin: 1rem auto;
}

.cta-highlight {
    font-size: 1.125rem;
    color: var(--color-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
}

.contact-item svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-gold);
    margin: 0 auto 1rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #333;
    font-size: 0.875rem;
}

.cta-buttons {
    text-align: center;
}

.online-text {
    color: #333;
    font-size: 0.875rem;
    margin: 1.5rem 0 0.5rem;
}

.online-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.online-link-cta:hover {
    color: #333;
}

.online-link-cta svg {
    width: 1rem;
    height: 1rem;
}

/* Footer */
footer {
    background: var(--color-navy);
    color: white;
    padding: 1rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

footer h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

footer p {
    color: #9ca3af;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-item span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.mt-4 {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--color-gold);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-grid,
    .grid-2,
    .grid-2-equal,
    .grid-3,
    .grid-4,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .investment-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 2.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .container {
        padding: 0 0.75rem;
    }

}

/* ===== NAV VISIBILITY (desktop vs mobile) ===== */

/* Desktop: mostra menu desktop e esconde mobile */
#desktop-nav {
  display: flex;
}

.mobile-menu-btn,
#mobile-nav {
  display: none;
}

/* Mobile (até 768px): esconde desktop e mostra mobile */
@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* O mobile-nav só aparece quando tiver .active (seu JS já alterna isso) */
  #mobile-nav {
    display: none;
  }
  #mobile-nav.active {
    display: flex;
  }
}/* End custom CSS */