* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #3c261f;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
}

/* Landing page não precisa do padding-bottom */
body:not(.diagnostico-page) {
    padding-bottom: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Container flex apenas quando necessário (páginas antigas) */
body > .container:only-child {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.areas-atuacao {
    margin-bottom: 60px;
}

.areas-atuacao h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.cards-container::-webkit-scrollbar {
    height: 8px;
}

.cards-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb {
    background: #c85428;
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb:hover {
    background: #b0451e;
}

.card {
    min-width: 280px;
    height: auto;
    min-height: 250px;
    border: 2px solid #c85428;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    background: transparent;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 40px;
    color: #c85428;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 84, 40, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-item {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    opacity: 0.95;
}

/* Se o logo já for claro, remover o filter */
.footer-logo-img {
    filter: none;
}

.footer-item h3 {
    color: #c85428;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.footer-item h3 i {
    margin-right: 10px;
}

.footer-item p {
    line-height: 1.8;
    color: #ffffff;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.contact-link:hover {
    color: #c85428;
}

.contact-link i {
    font-size: 18px;
    color: #ffffff;
}

.contact-link:hover i {
    color: #c85428;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #ffffff;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #c85428;
    padding: 15px 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.diagnostico-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.3s ease;
}

.diagnostico-link:hover {
    opacity: 0.8;
}

.diagnostico-content {
    margin-bottom: 60px;
}

.diagnostico-content h1 {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

body.diagnostico-page .diagnostico-content h1 {
    color: #333333;
}

.diagnostico-content h2 {
    font-size: 24px;
    color: #c85428;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.content-box {
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid #c85428;
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.content-box p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.benefits-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-list li i {
    color: #c85428;
    font-size: 20px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.logo {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    .areas-atuacao h4 {
        font-size: 16px;
    }

    .card {
        min-width: 240px;
        min-height: 220px;
        padding: 25px 15px;
    }

    .card i {
        font-size: 35px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
        font-size: 28px;
    }

    .fixed-footer {
        padding: 12px 15px;
    }

    .diagnostico-link {
        font-size: 14px;
    }

    .diagnostico-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .diagnostico-content h2 {
        font-size: 20px;
    }

    .content-box {
        padding: 25px 20px;
    }

    .content-box p {
        font-size: 14px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Tema Clean para Página de Diagnóstico */
body.diagnostico-page {
    background-color: #ffffff;
    color: #333333;
}

body.diagnostico-page .container {
    background-color: #ffffff;
}

body.diagnostico-page footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.diagnostico-page .footer-item h3 {
    color: #c85428;
}

body.diagnostico-page .footer-item p {
    color: #666666;
}

body.diagnostico-page .contact-link {
    color: #333333;
}

body.diagnostico-page .contact-link:hover {
    color: #c85428;
}

body.diagnostico-page .contact-link i {
    color: #333333;
}

body.diagnostico-page .contact-link:hover i {
    color: #c85428;
}

/* Estilos do Formulário de Diagnóstico */
.subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

body.diagnostico-page .subtitle {
    color: #666666;
}

.steps-indicator {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.step-indicator {
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid rgba(200, 84, 40, 0.3);
    border-radius: 8px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    min-width: 0;
}

body.diagnostico-page .step-indicator {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
}

.step-indicator:hover {
    background: rgba(200, 84, 40, 0.2);
    border-color: #c85428;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(200, 84, 40, 0.2);
}

body.diagnostico-page .step-indicator:hover {
    background: #f0f0f0;
    border-color: #c85428;
    box-shadow: 0 2px 8px rgba(200, 84, 40, 0.15);
}

.step-indicator.active {
    background: rgba(200, 84, 40, 0.2);
    border-color: #c85428;
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.3);
}

body.diagnostico-page .step-indicator.active {
    background: #fff5f2;
    border-color: #c85428;
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.15);
}

.step-indicator.completed {
    background: rgba(200, 84, 40, 0.15);
    border-color: #c85428;
}

body.diagnostico-page .step-indicator.completed {
    background: #f8f9fa;
    border-color: #c85428;
}

.step-indicator.completed .step-number {
    background: #c85428;
    color: #ffffff;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(200, 84, 40, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

body.diagnostico-page .step-number {
    background: #e0e0e0;
    color: #666666;
}

.step-indicator.active .step-number {
    background: #c85428;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(200, 84, 40, 0.4);
}

.step-indicator.completed .step-number {
    background: #c85428;
    color: #ffffff;
}

.step-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

body.diagnostico-page .step-title {
    color: #666666;
}

.step-indicator.active .step-title {
    color: #ffffff;
    font-weight: 600;
}

body.diagnostico-page .step-indicator.active .step-title {
    color: #c85428;
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid #c85428;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

body.diagnostico-page .info-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
}

body.diagnostico-page .info-card:hover {
    border-color: #c85428;
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.1);
}

.info-card h3 {
    color: #c85428;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card h3 i {
    font-size: 24px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 14px;
}

body.diagnostico-page .info-card p {
    color: #666666;
}

.orientation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.orientation-card {
    background: rgba(200, 84, 40, 0.05);
    border: 2px solid rgba(200, 84, 40, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

body.diagnostico-page .orientation-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
}

.orientation-card:hover {
    border-color: #c85428;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.15);
}

body.diagnostico-page .orientation-card:hover {
    border-color: #c85428;
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.1);
}

.orientation-card i {
    font-size: 48px;
    color: #c85428;
    margin-bottom: 20px;
    display: block;
}

.orientation-card h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

body.diagnostico-page .orientation-card h3 {
    color: #333333;
}

.orientation-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

body.diagnostico-page .orientation-card p {
    color: #666666;
}

.progress-container {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(200, 84, 40, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

body.diagnostico-page .progress-bar {
    background: #e0e0e0;
}

.progress-fill {
    height: 100%;
    background: #c85428;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 16.66%;
}

.progress-text {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

body.diagnostico-page .progress-text {
    color: #666666;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid #c85428;
    border-radius: 8px;
    padding: 40px;
}

body.diagnostico-page .form-container {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    color: #c85428;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

body.diagnostico-page .step-description {
    color: #666666;
}

.context-text {
    background: rgba(200, 84, 40, 0.05);
    border-left: 3px solid #c85428;
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0 30px 0;
}

body.diagnostico-page .context-text {
    background: #f8f9fa;
    border-left-color: #c85428;
}

.context-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.context-text p:last-child {
    margin-bottom: 0;
}

body.diagnostico-page .context-text p {
    color: #666666;
}

.section-subtitle {
    color: #c85428;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #c85428;
    padding-bottom: 10px;
}

body.diagnostico-page .section-subtitle {
    color: #c85428;
    border-bottom-color: #c85428;
}

.alert-badge {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

body.diagnostico-page .alert-badge {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.alert-badge i {
    color: #ffc107;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    color: #856404;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

body.diagnostico-page .alert-content strong {
    color: #856404;
}

.alert-content p {
    color: #856404;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

body.diagnostico-page .alert-content p {
    color: #856404;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

body.diagnostico-page .info-box {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.info-box i {
    color: #2196f3;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box p {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

body.diagnostico-page .info-box p {
    color: #1565c0;
}

.info-box strong {
    display: block;
    color: #1565c0;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.objectives-list li {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.8;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.objectives-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: bold;
    font-size: 18px;
}

body.diagnostico-page .objectives-list li {
    color: #1565c0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

body.diagnostico-page .form-group label {
    color: #333333;
}

.required-asterisk {
    color: #c85428;
    font-weight: 600;
    margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(200, 84, 40, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

body.diagnostico-page .form-group input[type="text"],
body.diagnostico-page .form-group input[type="number"],
body.diagnostico-page .form-group select,
body.diagnostico-page .form-group textarea {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #333333;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c85428;
    background: rgba(255, 255, 255, 0.15);
}

body.diagnostico-page .form-group input[type="text"]:focus,
body.diagnostico-page .form-group input[type="number"]:focus,
body.diagnostico-page .form-group select:focus,
body.diagnostico-page .form-group textarea:focus {
    background: #ffffff;
    border-color: #c85428;
    box-shadow: 0 0 0 3px rgba(200, 84, 40, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

body.diagnostico-page .form-group input[type="text"]::placeholder,
body.diagnostico-page .form-group textarea::placeholder {
    color: #999999;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

body.diagnostico-page .radio-label {
    color: #333333;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c85428;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 84, 40, 0.3);
}

body.diagnostico-page .form-navigation {
    border-top: 1px solid #e0e0e0;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #c85428;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b0451e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(200, 84, 40, 0.3);
}

body.diagnostico-page .btn-secondary {
    background: #ffffff;
    color: #c85428;
    border: 2px solid #c85428;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #c85428;
}

body.diagnostico-page .btn-secondary:hover {
    background: #fff5f2;
    border-color: #c85428;
    color: #c85428;
}

.btn-success {
    background: #25D366;
    color: #ffffff;
}

.btn-success:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .orientation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .orientation-card {
        padding: 25px 20px;
    }

    .orientation-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .orientation-card h3 {
        font-size: 16px;
    }

    .orientation-card p {
        font-size: 13px;
    }

    .steps-indicator {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 0 5px;
    }

    .step-indicator {
        padding: 10px 6px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-title {
        font-size: 9px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    @media (max-width: 480px) {
        .steps-indicator {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }
        
        .step-indicator {
            padding: 8px 4px;
        }
        
        .step-number {
            width: 24px;
            height: 24px;
            font-size: 11px;
        }
        
        .step-title {
            font-size: 8px;
        }
    }
    
    @media (max-width: 480px) {
        .steps-indicator {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }
        
        .step-indicator {
            padding: 8px 4px;
        }
        
        .step-number {
            width: 24px;
            height: 24px;
            font-size: 11px;
        }
        
        .step-title {
            font-size: 8px;
        }
    }

    .form-container {
        padding: 25px 20px;
    }

    .form-step h2 {
        font-size: 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .progress-text {
        font-size: 12px;
    }
}

/* Estilos customizados para SweetAlert2 */
.swal-popup-custom {
    font-family: 'Montserrat', sans-serif;
}

.swal-popup-custom .swal2-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333333;
}

.swal-popup-custom .swal2-content {
    font-family: 'Montserrat', sans-serif;
    color: #666666;
}

.swal-popup-custom .swal2-confirm {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* ============================================
   PÁGINA DE AGRADECIMENTO (OBRIGADO)
   ============================================ */

.obrigado-container {
    background-color: #3c261f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
}

.obrigado-container .logo-container {
    text-align: center;
    padding: 40px 20px 20px;
}

.obrigado-container .logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.obrigado-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

.obrigado-container footer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.obrigado-title {
    text-align: center;
    font-size: 42px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.proximos-passos-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.proximos-passos-subtitle {
    text-align: center;
    font-size: 14px;
    color: #c85428;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.proximos-passos-title {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.proximos-passos-text {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    font-family: 'Montserrat', sans-serif;
}

.obrigado-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.obrigado-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(200, 84, 40, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.obrigado-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #c85428;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.obrigado-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c85428, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(200, 84, 40, 0.4);
}

.obrigado-card-icon i {
    font-size: 32px;
    color: #ffffff;
}

.obrigado-card-title {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.obrigado-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.obrigado-quote {
    text-align: center;
    font-size: 20px;
    color: #c85428;
    font-style: italic;
    font-weight: 500;
    margin-top: 40px;
    padding: 25px;
    background-color: rgba(200, 84, 40, 0.1);
    border-left: 4px solid #c85428;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive para página de obrigado */
@media (max-width: 768px) {
    .obrigado-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .proximos-passos-section {
        padding: 35px 25px;
    }

    .proximos-passos-title {
        font-size: 28px;
    }

    .proximos-passos-text {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .obrigado-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .obrigado-card {
        padding: 30px 20px;
    }

    .obrigado-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .obrigado-card-icon i {
        font-size: 28px;
    }

    .obrigado-card-title {
        font-size: 20px;
    }

    .obrigado-card-text {
        font-size: 14px;
    }

    .obrigado-quote {
        font-size: 18px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .obrigado-title {
        font-size: 26px;
    }

    .proximos-passos-title {
        font-size: 24px;
    }

    .proximos-passos-text {
        font-size: 15px;
    }

    .obrigado-quote {
        font-size: 16px;
    }
}

/* ============================================
   LANDING PAGE - NOVA ESTRUTURA
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3c261f 0%, #2a1a15 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(200, 84, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-header {
    text-align: center;
    margin-bottom: 50px;
}

.hero-header .logo {
    max-width: 250px;
    height: auto;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta i {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #c85428, #e67e22);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 84, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #c85428;
    border: 2px solid #c85428;
}

.btn-secondary:hover {
    background: #c85428;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 84, 40, 0.4);
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

/* Section Title para áreas (light theme) */
.areas-section .section-title {
    color: #333333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c85428, transparent);
}

.section-title-light {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #c85428;
}

/* Sobre o Advogado Section */
.sobre-advogado-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sobre-advogado-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.advogado-image {
    position: relative;
}

.advogado-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.advogado-text {
    color: #333333;
}

.advogado-name {
    font-size: 32px;
    font-weight: 700;
    color: #c85428;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.advogado-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

.advogado-bio:last-child {
    margin-bottom: 0;
}

.advogado-qualificacoes {
    margin-top: 20px;
}

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

.qualificacoes-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(200, 84, 40, 0.1);
}

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

.qualificacoes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c85428;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.qualificacao-hidden {
    display: none;
}

.qualificacoes-list.expanded .qualificacao-hidden {
    display: list-item;
}

.btn-ver-mais {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #c85428;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-ver-mais:hover {
    background-color: #a8431f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 84, 40, 0.3);
}

.btn-ver-mais.hidden {
    display: none;
}

/* Responsive para Sobre o Advogado */
@media (max-width: 968px) {
    .sobre-advogado-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .advogado-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title-light {
        text-align: center;
    }

    .section-title-light::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Sobre Section */
.sobre-section {
    padding: 80px 20px;
    background-color: #3c261f;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-intro {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sobre-block {
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid rgba(200, 84, 40, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.sobre-block:hover {
    background: rgba(200, 84, 40, 0.15);
    border-color: #c85428;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 84, 40, 0.2);
}

.sobre-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c85428, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(200, 84, 40, 0.4);
}

.sobre-icon i {
    font-size: 36px;
    color: white;
}

.sobre-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #c85428;
    margin-bottom: 20px;
}

.sobre-block ul {
    list-style: none;
    text-align: left;
}

.sobre-block ul li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
}

.sobre-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c85428;
    font-weight: bold;
    font-size: 18px;
}

/* Áreas Section */
.areas-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background: #ffffff;
    border: 2px solid rgba(200, 84, 40, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.area-card:hover {
    background: #ffffff;
    border-color: #c85428;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 84, 40, 0.2);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c85428, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(200, 84, 40, 0.4);
}

.area-icon i {
    font-size: 32px;
    color: white;
}

.area-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c85428;
    margin-bottom: 25px;
    line-height: 1.3;
}

.area-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 20px;
}

.area-content h4:first-of-type {
    margin-top: 0;
}

.area-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.area-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    color: #555555;
    position: relative;
    line-height: 1.6;
}

.area-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c85428;
    font-size: 20px;
    font-weight: bold;
}

.area-diferencial {
    margin-top: 20px;
    padding: 15px;
    background: rgba(200, 84, 40, 0.08);
    border-left: 4px solid #c85428;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.area-diferencial strong {
    color: #c85428;
}

/* .area-lgpd - Removido grid-column: span 2 para manter todos os cards com a mesma largura */

.lgpd-subsection {
    margin-bottom: 25px;
}

.lgpd-subsection h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c85428;
}

.lgpd-subsection h4 i {
    font-size: 18px;
}

/* Metodologia Section */
.metodologia-section {
    padding: 80px 20px;
    background-color: #3c261f;
}

.metodologia-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metodologia-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c85428, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(200, 84, 40, 0.4);
}

.metodologia-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c85428;
    margin-bottom: 15px;
}

.metodologia-step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Diferenciais Section */
.diferenciais-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #2a1a15 0%, #3c261f 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.diferencial-item {
    background: rgba(200, 84, 40, 0.1);
    border: 2px solid rgba(200, 84, 40, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background: rgba(200, 84, 40, 0.15);
    border-color: #c85428;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 84, 40, 0.2);
}

.diferencial-item i {
    font-size: 48px;
    color: #c85428;
    margin-bottom: 20px;
}

.diferencial-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.diferencial-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.diferenciais-cta {
    text-align: center;
    margin-top: 50px;
}

.diferenciais-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #c85428;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .sobre-blocks {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .area-lgpd {
        grid-column: span 1;
    }

    .metodologia-steps {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ============================================
   ANIMAÇÕES ON SCROLL
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
}

/* Animações específicas por tipo de elemento */
.sobre-section.animate-on-scroll {
    transform: translateY(30px);
}

.sobre-section.animate-on-scroll.animate-in {
    transform: translateY(0);
}

.sobre-block.animate-on-scroll {
    transform: translateY(30px);
    transition-delay: 0.1s;
}

.sobre-block.animate-on-scroll.animate-in {
    transform: translateY(0);
}

.area-card.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
}

.area-card.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Delay escalonado para cards */
.area-card:nth-child(1).animate-on-scroll {
    transition-delay: 0s;
}

.area-card:nth-child(2).animate-on-scroll {
    transition-delay: 0.15s;
}

.area-card:nth-child(3).animate-on-scroll {
    transition-delay: 0.3s;
}

.metodologia-step.animate-on-scroll {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
}

.metodologia-step.animate-on-scroll.animate-in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Delay escalonado para steps */
.metodologia-step:nth-child(1).animate-on-scroll {
    transition-delay: 0s;
}

.metodologia-step:nth-child(2).animate-on-scroll {
    transition-delay: 0.1s;
}

.metodologia-step:nth-child(3).animate-on-scroll {
    transition-delay: 0.2s;
}

.metodologia-step:nth-child(4).animate-on-scroll {
    transition-delay: 0.3s;
}

.metodologia-step:nth-child(5).animate-on-scroll {
    transition-delay: 0.4s;
}

.diferencial-item.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
}

.diferencial-item.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Delay escalonado para diferenciais */
.diferencial-item:nth-child(1).animate-on-scroll {
    transition-delay: 0s;
}

.diferencial-item:nth-child(2).animate-on-scroll {
    transition-delay: 0.1s;
}

.diferencial-item:nth-child(3).animate-on-scroll {
    transition-delay: 0.2s;
}

.diferencial-item:nth-child(4).animate-on-scroll {
    transition-delay: 0.3s;
}

.diferencial-item:nth-child(5).animate-on-scroll {
    transition-delay: 0.4s;
}

.diferencial-item:nth-child(6).animate-on-scroll {
    transition-delay: 0.5s;
}

.section-title.animate-on-scroll {
    transform: translateY(-20px);
    opacity: 0;
}

.section-title.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.sobre-intro.animate-on-scroll {
    transform: translateY(20px);
    opacity: 0;
}

.sobre-intro.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.sobre-advogado-section.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
}

.sobre-advogado-section.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.sobre-advogado-content.animate-on-scroll {
    opacity: 0;
}

.sobre-advogado-content.animate-on-scroll.animate-in {
    opacity: 1;
}

.section-title-light.animate-on-scroll {
    transform: translateX(-20px);
    opacity: 0;
}

.section-title-light.animate-on-scroll.animate-in {
    transform: translateX(0);
    opacity: 1;
}

.hero-content.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
}

.hero-content.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Animação para o hero aparecer imediatamente */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
