/* font-family: 'Montserrat', sans-serif;
   font-family: 'Playfair Display', serif; 
*/

:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #B4941F;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --bg-dark: #1A1A1A;
    /* Near Black */
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--bg-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Header */
#header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 160px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--text-color);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--bg-dark);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu .mobile-btn {
    width: 100%;
    max-width: 250px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    padding-top: 80px;
    overflow: hidden;
}

#sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    padding-top: 80px;
    overflow: hidden;
}

/* Remove local positioning context if it interferes, but hero needs relative for its content */

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15), transparent 60%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: rgba(26, 26, 26, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--gold);
    color: var(--primary-color);
    font-weight: 600;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    /* Changed to white for dark bg */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Video Section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    box-shadow: var(--shadow);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 2px solid var(--primary-color);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.2);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Commission Section */
.commission-section {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 100px 0;
}

.commission-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.tiers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tier-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tier-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.tier-item.gold {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.tier-details {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tier-percent {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.commission-cta {
    text-align: center;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* Registration Section */
.registration-section {
    background-color: var(--bg-dark);
    position: relative;
    padding-bottom: 60px;
}

.registration-section h2 {
    color: var(--primary-color);
}

.registration-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    /* Ensure it behaves as a block for contents */
    width: 100%;
    /* Ensure full width up to max-width */
}

/* FAQ Section */
.faq-container {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 40px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background-color: #F1E9D2;
    /* Beige color from print */
    color: #4a4a4a;
    padding: 20px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.accordion-header:hover {
    background-color: #D4AF37;
    /* Gold hover */
    color: #fff;
}

.accordion-header.active {
    background-color: #D4AF37;
    color: #fff;
}

.accordion-content {
    background-color: #fff;
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 20px;
    border-left: 3px solid var(--primary-color);
}

.icon {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 150px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's black */
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .header-content {
        justify-content: space-between;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
        height: auto;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 40px;
        text-align: center;
        margin: 0 auto 40px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .image-wrapper {
        max-width: 400px;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: max-content;
        animation: none;
        /* Simplify for mobile */
    }

    /* Hide the header button on mobile to save space, rely on menu */
    #header .btn-primary {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer a:hover {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .commission-section h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
/* Texto abaixo do "Faça seu Cadastro" */
#cadastro .section-header.text-center p {
  color: #f5f5f5 !important;   /* branco bem suave */
  opacity: 1 !important;       /* garante que não fica apagadinho */
}

}



