/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--dark-brown);
    overflow-x: hidden;
    background-color: var(--primary-beige);
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 30px !important;
    right: 20px !important;
    background: #25d366 !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 30px !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    animation: pulse 2s infinite !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Força a exibição do WhatsApp em mobile */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999999 !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}

/* Garantir visibilidade imediata do WhatsApp */
.whatsapp-float {
    will-change: transform !important;
}

/* Logo Section */
.logo-section {
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    border-bottom: 1px solid rgba(207, 183, 105, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-logo {
    height: 160px;
    width: auto;
    max-width: 400px;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(207, 183, 105, 0.2));
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(207, 183, 105, 0.3));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #381715;
    color: var(--dark-brown);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    display: none;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(207, 183, 105, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(207, 183, 105, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #CFB769;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modern Hero Title */
.hero-title-container {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--gold), #d4c373);
    color: #CFB769;
    padding: 0.8rem 1.5rem;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(207, 183, 105, 0.4);
    animation: pulse-badge 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge span {
    color: #381715;
}

.hero-badge i {
    font-size: 1.3rem;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.title-line-1 {
    display: block;
    color: #CFB769;
    font-weight: 300;
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.title-line-2 {
    display: block;
    position: relative;
}

.highlight-modern {
    background: linear-gradient(135deg, var(--gold) 0%, #d4c373 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(207, 183, 105, 0.3);
}

.highlight-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(207, 183, 105, 0.1) 50%, transparent 100%);
    border-radius: 10px;
    z-index: -1;
    transform: skew(-5deg);
}

.hero-title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.decoration-line {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(207, 183, 105, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(207, 183, 105, 0.5);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(207, 183, 105, 0.8);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: rgba(74, 44, 42, 0.95);
    position: relative;
}

.hero-subtitle-box {
    margin: 2rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #CFB769;
}

.hero-features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #CFB769;
    font-size: 1.2rem;
}

.feature i {
    color: #CFB769;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #CFB769;
    color: #4a2c2a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(207, 183, 105, 0.3);
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #b8a356;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(207, 183, 105, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-placeholder {
    width: 280px;
    height: 280px;
    background: rgba(207, 183, 105, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(207, 183, 105, 0.4);
    box-shadow: 0 10px 40px rgba(207, 183, 105, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-placeholder i {
    font-size: 5rem;
    color: #CFB769;
}

.hero-logo {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Divider */
.section-divider {
    padding: 60px 20px;
    background: var(--primary-beige);
}

.divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-line::before,
.divider-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #CFB769 50%, transparent 100%);
    max-width: 200px;
}

.divider-dot {
    width: 12px;
    height: 12px;
    background: #CFB769;
    border-radius: 50%;
    margin: 0 20px;
    box-shadow: 0 0 20px rgba(207, 183, 105, 0.4);
    animation: pulse-divider 3s infinite;
}

@keyframes pulse-divider {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(207, 183, 105, 0.4);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(207, 183, 105, 0.6);
    }
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--cream);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-brown);
    line-height: 1.7;
}

.benefits h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.benefits li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--medium-brown);
    line-height: 1.6;
}

/* Mentorship Section */
.mentorship {
    padding: 100px 20px;
    background: var(--cream);
}

.mentorship h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mentorship-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-border);
}

.mentorship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: var(--cream);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--cream);
}

.mentorship-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.mentorship-card p {
    color: var(--medium-brown);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: var(--cream);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 280px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 2rem;
    color: #f5f1eb;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
    flex-shrink: 0;
}

.benefit-card p {
    color: var(--medium-brown);
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: #381715;
    color: var(--cream);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-info p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-brown);
    color: var(--medium-brown);
}

/* Responsive Design */
@media (max-width: 768px) {

    .section-divider {
        padding: 40px 20px;
    }

    .divider-line::before,
    .divider-line::after {
        max-width: 100px;
    }

    .divider-dot {
        width: 10px;
        height: 10px;
        margin: 0 15px;
    }

    .logo-section {
        padding: 30px 20px 15px;
    }

    .main-logo {
        height: 130px;
        max-width: 320px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        max-width: 600px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .title-line-1 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        gap: 0.6rem;
    }

    .hero-badge i {
        font-size: 1.1rem;
    }

    .hero-title-decoration {
        justify-content: center;
        margin-top: 1rem;
    }

    .decoration-line {
        width: 40px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-subtitle-box {
        margin: 1.5rem 0;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-placeholder i {
        font-size: 3.5rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .feature {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
        bottom: 25px !important;
        right: 15px !important;
        z-index: 999999 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        bottom: 20px !important;
        right: 10px !important;
        z-index: 999999 !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6) !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: fixed !important;
    }

    .logo-section {
        padding: 25px 20px 10px;
    }

    .main-logo {
        height: 110px;
        max-width: 280px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .title-line-1 {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .decoration-line {
        width: 30px;
        height: 2px;
    }

    .decoration-dot {
        width: 8px;
        height: 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-subtitle-box {
        margin: 1rem 0;
    }

    .hero-placeholder {
        width: 160px;
        height: 160px;
    }

    .hero-placeholder i {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .about,
    .mentorship,
    .benefits-section,
    .cta-section {
        padding: 60px 15px;
    }

    .about h2,
    .mentorship h2,
    .benefits-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 400px;
    }
}

/* Tar
get Audience Section */
.target-audience {
    padding: 100px 20px;
    background: var(--primary-beige);
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f8ef;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(207, 183, 105, 0.3);
    opacity: 0;
    transform: translateX(100px);
    animation-fill-mode: forwards;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-item.animate {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.audience-item:nth-child(1).animate {
    animation-delay: 0.1s;
}

.audience-item:nth-child(2).animate {
    animation-delay: 0.2s;
}

.audience-item:nth-child(3).animate {
    animation-delay: 0.3s;
}

.audience-item:nth-child(4).animate {
    animation-delay: 0.4s;
}

.audience-item:nth-child(5).animate {
    animation-delay: 0.5s;
}

.audience-item:nth-child(6).animate {
    animation-delay: 0.6s;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animações para curriculum-item */
.curriculum-item.animate {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.curriculum-item:nth-child(1).animate {
    animation-delay: 0.1s;
}

.curriculum-item:nth-child(2).animate {
    animation-delay: 0.2s;
}

.curriculum-item:nth-child(3).animate {
    animation-delay: 0.3s;
}

.curriculum-item:nth-child(4).animate {
    animation-delay: 0.4s;
}

.curriculum-item:nth-child(5).animate {
    animation-delay: 0.5s;
}

.curriculum-item:nth-child(6).animate {
    animation-delay: 0.6s;
}

.curriculum-item:nth-child(7).animate {
    animation-delay: 0.7s;
}

.curriculum-item:nth-child(8).animate {
    animation-delay: 0.8s;
}

/* Animações para material-item */
.material-item.animate {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.material-item:nth-child(1).animate {
    animation-delay: 0.1s;
}

.material-item:nth-child(2).animate {
    animation-delay: 0.2s;
}

.material-item:nth-child(3).animate {
    animation-delay: 0.3s;
}

.material-item:nth-child(4).animate {
    animation-delay: 0.4s;
}

.audience-item i {
    font-size: 3rem;
    color: #CFB769;
    margin-bottom: 1rem;
}

.audience-item span {
    font-weight: 600;
    color: var(--dark-brown);
    font-family: 'Inter', sans-serif;
}

.pain-points {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f8ef;
    border-radius: 15px;
    border-left: 5px solid #CFB769;
}

.pain-points p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Curriculum Section */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-brown);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(100px);
}

.curriculum-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.lesson-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lesson-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

/* Materials Section */
.materials {
    padding: 100px 20px;
    background: var(--cream);
}

.materials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #381715;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.material-item {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(100px);
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.material-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.material-item h4 {
    font-size: 1.3rem;
    color: #381715;
    margin-bottom: 0.5rem;
}

.material-item p {
    color: #381715;
    font-size: 0.95rem;
}

/* Mentor Section */
.mentor {
    padding: 100px 20px;
    background: #381715;
}

.mentor h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #CFB769;
}

.mentor-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mentor-info h3 {
    font-size: 2rem;
    color: #CFB769;
    margin-bottom: 0.5rem;
}

.mentor-title {
    font-size: 1.2rem;
    color: #CFB769;
    margin-bottom: 2rem;
}

.mentor-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #CFB769;
}

.mentor-mission {
    font-size: 1.1rem;
    color: #CFB769;
    line-height: 1.6;
}

.mentor-image {
    display: flex;
    justify-content: center;
}

.mentor-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor-placeholder i {
    font-size: 5rem;
    color: var(--cream);
}

.mentor-photo {
    width: 240px;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #CFB769;
    box-shadow: 0 8px 30px rgba(207, 183, 105, 0.3);
    transition: all 0.3s ease;
}

.mentor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(207, 183, 105, 0.4);
}

/* Investment Section */
.investment {
    padding: 100px 20px;
    background: var(--cream);
}

.investment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.investment-content {
    display: flex;
    justify-content: center;
}

.price-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
}

.price-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
}

.cents {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

.payment-conditions {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .mentor-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .mentor-image {
        order: -1;
    }

    .mentor-info {
        order: 1;
    }

    .mentor-stats {
        justify-content: center;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .curriculum-item {
        flex-direction: column;
        text-align: center;
    }



    .audience-item {
        padding: 1.5rem 1rem;
    }

    .audience-item i {
        font-size: 2rem;
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .price-display {
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 0;
    }

    .currency {
        font-size: 1.8rem;
        margin-right: 0.1rem;
        margin-top: 0;
    }

    .amount {
        font-size: 2.8rem;
        line-height: 1;
    }

    .cents {
        font-size: 1.8rem;
        margin-top: 0;
        margin-left: 0;
    }
}

/* Pa
leta de cores baseada na imagem */
:root {
    --primary-beige: #fdfdf4;
    --secondary-beige: #f8f8ef;
    --tertiary-beige: #bfad84;
    --dark-brown: #4a2c2a;
    --medium-brown: #5a3532;
    --light-brown: #6b3e3a;
    --cream: #000000;
    --gold: #CFB769;
    --gold-hover: #b8a356;
    --gold-light: rgba(207, 183, 105, 0.1);
    --gold-border: rgba(207, 183, 105, 0.3);
}

/* Atualizações globais */
body {
    background-color: var(--primary-beige);
    color: var(--dark-brown);
}

/* Seções com fundo alternado */
.about {
    background: var(--secondary-brown) !important;
}

.about h2 {
    color: var(--cream) !important;
    font-family: 'Playfair Display', serif !important;
}

.section-subtitle {
    color: var(--cream) !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

.curriculum-item {
    background: rgba(245, 241, 235, 0.1) !important;
    border: 1px solid var(--gold-border) !important;
}

.lesson-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%) !important;
    color: var(--primary-brown) !important;
}

.lesson-content h4 {
    color: var(--cream) !important;
    font-family: 'Inter', sans-serif !important;
}

/* Materials Section */
.materials {
    background: var(--primary-brown) !important;
}

.materials h2 {
    color: #381715 !important;
    font-family: 'Playfair Display', serif !important;
}

.material-item {
    background: rgba(245, 241, 235, 0.1) !important;
    border: 1px solid var(--gold-border) !important;
}

.material-item i {
    color: var(--gold) !important;
}

.material-item h4 {
    color: #381715 !important;
    font-family: 'Playfair Display', serif !important;
}

.material-item p {
    color: #381715 !important;
    opacity: 0.8;
    font-family: 'Inter', sans-serif !important;
}

/* Mentor Section */
.mentor {
    background: #381715 !important;
}

.mentor h2 {
    color: #CFB769 !important;
    font-family: 'Playfair Display', serif !important;
}

.mentor-info h3 {
    color: #CFB769 !important;
    font-family: 'Playfair Display', serif !important;
}

.mentor-title {
    color: #CFB769 !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

.stat-number {
    color: #CFB769 !important;
    font-family: 'Playfair Display', serif !important;
}

.stat-label {
    color: #CFB769 !important;
    opacity: 0.8;
    font-family: 'Inter', sans-serif !important;
}

.mentor-mission {
    color: #CFB769 !important;
    font-family: 'Inter', sans-serif !important;
}

.mentor-placeholder {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%) !important;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-brown) !important;
}

.benefits-section h2 {
    color: var(--cream) !important;
    font-family: 'Playfair Display', serif !important;
}

.benefit-card {
    background: rgba(245, 241, 235, 0.1) !important;
    border: 1px solid var(--gold-border) !important;
}

.benefit-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%) !important;
}

.benefit-card h3 {
    color: var(--cream) !important;
    font-family: 'Playfair Display', serif !important;
}

.benefit-card p {
    color: var(--cream) !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

/* Investment Section */
.investment {
    background: var(--secondary-brown) !important;
}

.investment h2 {
    color: var(--cream) !important;
    font-family: 'Playfair Display', serif !important;
}

.price-card {
    background: rgba(245, 241, 235, 0.1) !important;
    border: 3px solid var(--gold) !important;
}

.price-card h3 {
    color: var(--cream) !important;
    font-family: 'Playfair Display', serif !important;
}

.currency,
.amount,
.cents {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif !important;
}

.payment-conditions {
    color: var(--gold) !important;
    font-family: 'Inter', sans-serif !important;
}

/* CTA Section */
.cta-section {
    background: #381715 !important;
}

.cta-section h2 {
    color: #CFB769 !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: pulse-glow 2s ease-in-out infinite alternate !important;
    margin-bottom: 1.5rem !important;
}

.cta-section p {
    color: #CFB769 !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

/* Footer */
.footer {
    background: var(--primary-brown) !important;
    border-top: 1px solid var(--gold-border);
}

.footer-info h3 {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif !important;
}

.footer-info p {
    color: var(--cream) !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

.footer-contact h4 {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif !important;
}

.footer-contact p {
    color: var(--cream) !important;
    opacity: 0.9;
    font-family: 'Inter', sans-serif !important;
}

.footer-bottom {
    border-top: 1px solid var(--gold-border) !important;
}

.footer-bottom p {
    color: var(--cream) !important;
    opacity: 0.7;
    font-family: 'Inter', sans-serif !important;
}@keyfr
ames pulse-glow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(207, 183, 105, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(207, 183, 105, 0.8), 0 0 30px rgba(207, 183, 105, 0.6);
        transform: scale(1.02);
    }
}

.cta-section .cta-button.large {
    background: linear-gradient(45deg, #CFB769, #d4af37) !important;
    font-size: 0.84rem !important;
    padding: 0.9rem 1.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(207, 183, 105, 0.4), 0 0 20px rgba(207, 183, 105, 0.3) !important;
    animation: button-pulse 2s ease-in-out infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.cta-section .cta-button.large:hover {
    background: linear-gradient(45deg, #d4af37, #CFB769) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(207, 183, 105, 0.6), 0 0 30px rgba(207, 183, 105, 0.5) !important;
    animation: button-pulse 1.5s ease-in-out infinite !important;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(207, 183, 105, 0.4), 0 0 20px rgba(207, 183, 105, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(207, 183, 105, 0.8), 0 0 40px rgba(207, 183, 105, 0.7);
        transform: scale(1.03);
    }
}/* 
Animação alternativa mais visível para o botão CTA */
@keyframes cta-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(207, 183, 105, 0.4), 0 0 20px rgba(207, 183, 105, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(207, 183, 105, 0.7), 0 0 40px rgba(207, 183, 105, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    }
}

.cta-section .cta-button.large {
    animation: cta-glow 2s ease-in-out infinite, button-pulse 2s ease-in-out infinite !important;
}/* Ani
mação pulsante para o botão da seção hero */
.hero .cta-button {
    animation: hero-button-pulse 2s ease-in-out infinite !important;
    box-shadow: 0 4px 20px rgba(207, 183, 105, 0.3), 0 0 15px rgba(207, 183, 105, 0.2) !important;
}

.hero .cta-button:hover {
    animation: hero-button-pulse 1.5s ease-in-out infinite !important;
    box-shadow: 0 8px 30px rgba(207, 183, 105, 0.4), 0 0 25px rgba(207, 183, 105, 0.3) !important;
}

@keyframes hero-button-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(207, 183, 105, 0.3), 0 0 15px rgba(207, 183, 105, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(207, 183, 105, 0.5), 0 0 25px rgba(207, 183, 105, 0.4);
        transform: scale(1.02);
    }
}/* I
magem da mentoria na seção hero */
.hero-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-mentoria-image {
    height: 450px;
    width: auto;
    max-width: 675px;
    filter: drop-shadow(0 4px 15px rgba(207, 183, 105, 0.3));
    transition: all 0.3s ease;
}

.hero-mentoria-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(207, 183, 105, 0.4));
}

/* Responsivo para a imagem da mentoria */
@media (max-width: 768px) {
    .hero-mentoria-image {
        height: 330px;
        max-width: 525px;
    }
}

@media (max-width: 480px) {
    .hero-mentoria-image {
        height: 270px;
        max-width: 420px;
    }
}