/* ===== CSS RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores empáticas usando HSL (iguais ao React) */
    --primary-color: hsl(197, 92%, 45%);      /* Azul confiável */
    --primary-hover: hsl(197, 92%, 38%);      /* Azul hover */
    --secondary-color: hsl(46, 87%, 58%);     /* Amarelo acolhedor */
    --secondary-hover: hsl(46, 87%, 50%);     /* Amarelo hover */
    --tertiary-color: hsl(158, 64%, 52%);     /* Verde esperança */
    --accent-color: hsl(339, 82%, 62%);       /* Rosa empático */
    
    /* Cores neutras */
    --background-color: hsl(0, 0%, 100%);
    --foreground-color: hsl(226, 38%, 13%);
    --muted-color: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --border-color: hsl(214.3, 31.8%, 91.4%);
    
    /* Gradientes empáticos (iguais ao React) */
    --gradient-hero: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    --gradient-cta: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-trust: linear-gradient(180deg, var(--background-color), var(--muted-color));
    
    /* Sombras suaves (iguais ao React) */
    --shadow-soft: 0 4px 24px hsla(197, 92%, 45%, 0.1);
    --shadow-hover: 0 8px 32px hsla(197, 92%, 45%, 0.15);
    --shadow-cta: 0 6px 20px hsla(46, 87%, 58%, 0.3);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground-color);
    background-color: var(--background-color);
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-tertiary { color: var(--tertiary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-tertiary { background-color: var(--tertiary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

.section-padding { padding: 80px 0; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--foreground-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.fade-in-animation {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.slide-up-animation {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== HEADER ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-hover);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground-color);
}

.nav-link {
    color: var(--foreground-color) !important;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--foreground-color);
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: scale(1.05);
    color: var(--foreground-color);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-hero {
    background-color: var(--tertiary-color);
    color: white;
    box-shadow: var(--shadow-hover);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-hero:hover {
    background-color: hsl(158, 64%, 45%);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    border-color: var(--primary-hover);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: white;
    border: 1px solid var(--tertiary-color);
}

.btn-tertiary:hover {
    background-color: #45B812;
    color: white;
    border-color: #45B812;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: #FF5A8D;
    color: white;
    border-color: #FF5A8D;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-trust);
    padding-top: 38px;
    padding-bottom: 80px;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--foreground-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ===== STEP CARDS ===== */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground-color);
}

.step-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--muted-color);
    color: var(--muted-foreground);
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== FEATURE BADGES ===== */
.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--muted-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.feature-emoji {
    font-size: 1.5rem;
}

.feature-label {
    font-weight: 500;
    color: var(--foreground-color);
}

/* ===== PROFESSIONAL CARDS ===== */
.professional-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.professional-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.professional-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground-color);
}

.professional-credential {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.professional-description {
    color: var(--muted-foreground);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--gradient-trust);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.trust-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground-color);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.trust-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground-color);
}

.trust-text {
    color: var(--muted-foreground);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground-color);
}

.testimonial-location {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-condition {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(29, 180, 227, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
}

.testimonial-rating {
    color: #FFD700;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-cta);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.stats-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
    margin: 0;
}

/* ===== RESULT EXAMPLE ===== */
.result-example {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.result-header {
    background: var(--gradient-hero);
    color: white;
    padding: 1.5rem;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-meta {
    opacity: 0.9;
    margin: 0;
}

.result-content {
    padding: 1.5rem;
}

.result-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-warning {
    background-color: #FEF3C7;
    border: 1px solid #F59E0B;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-title {
    font-weight: 600;
    color: #92400E;
    margin: 0;
}

.alert-text {
    color: #92400E;
    margin: 0;
}

.result-indicators,
.result-recommendations {
    margin-bottom: 1.5rem;
}

.indicators-title,
.recommendations-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground-color);
}

.indicators-list,
.recommendations-list {
    margin: 0;
    padding-left: 1rem;
}

.indicators-list li,
.recommendations-list li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.result-recommendations {
    background-color: #EBF8FF;
    border: 1px solid #3B82F6;
    border-radius: 8px;
    padding: 1rem;
}

.recommendations-title {
    color: #1D4ED8;
}

.recommendations-list li {
    color: #1D4ED8;
}

.result-disclaimer {
    text-align: center;
    padding-top: 1rem;
}

.result-disclaimer p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== INFO STEPS ===== */
.result-info {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .result-info {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground-color);
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground-color);
}

.step-content p {
    color: var(--muted-foreground);
    margin: 0;
}

.info-reminder {
    background: var(--gradient-trust);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.reminder-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground-color);
}

.reminder-text {
    color: var(--muted-foreground);
    margin: 0;
}

/* ===== FAQ ===== */
.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: white !important;
    color: var(--foreground-color) !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 1.25rem 1.5rem !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--muted-color) !important;
    color: var(--foreground-color) !important;
}

.accordion-body {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-contact {
    background: var(--gradient-trust);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground-color);
}

.contact-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-cta);
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    font-size: 1.25rem;
    padding: 1rem 3rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.cta-benefits {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground-color);
}

.benefit-text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}

.cta-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground-color);
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 92%, 45%, 0.05), rgba(158, 64%, 52%, 0.05));
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
    margin: 2rem 0;
    transition: var(--transition-smooth);
    animation: fadeIn 0.8s ease-out forwards;
}

.cta-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(197, 92%, 45%, 0.08), rgba(158, 64%, 52%, 0.08));
}

/* ===== TEST CARDS ===== */
.test-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.test-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.test-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.test-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.test-content {
    padding: 1.5rem;
}

.test-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test-features {
    margin-bottom: 1.5rem;
}

.test-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.test-button {
    transition: var(--transition-bounce);
}

.test-button:hover {
    transform: scale(1.05);
}

.test-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--background-color);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.tip-icon {
    font-size: 1.2rem;
}

.tip-text {
    font-weight: 500;
    color: var(--foreground-color);
}

/* ===== PRIVACY SECTION ===== */
.privacy-section {
    background: var(--gradient-trust);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.privacy-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground-color);
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(29, 180, 227, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.privacy-heading {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground-color);
}

.privacy-text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer-section {
    background-color: var(--foreground-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .brand-text {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(29, 180, 227, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: rgba(29, 180, 227, 0.3);
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    font-size: 1.1rem;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contacts a:hover {
    color: white;
}

.footer-credentials {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    margin: 2rem 0;
}

.credential-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.credential-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.credential-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.disclaimer-box {
    background-color: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
}

.disclaimer-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 45px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-section .row {
        min-height: auto !important;
    }
    
    .hero-image {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-image img {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== INTERSECTION OBSERVER ANIMATIONS ===== */
.fade-in-animation,
.slide-up-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-animation.visible,
.slide-up-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SEÇÃO DE MENSAGEM ESPIRITUAL ===== */

.message-container {
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.message-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.message-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--muted-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.message-body {
    margin-bottom: 2rem;
}

.message-body textarea {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 150px;
    transition: var(--transition-smooth);
    font-family: var(--font-family);
    margin-bottom: 1rem;
}

.message-body textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px hsla(197, 92%, 45%, 0.1);
}

.message-body textarea::placeholder {
    color: var(--muted-foreground);
    font-style: italic;
}

.message-footer {
    text-align: center;
    padding-top: 1rem;
}

/* Área de resposta */
.response-container {
    background: linear-gradient(135deg, var(--muted-color), var(--background-color));
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
    animation: slideUp 0.5s ease-out;
}

.response-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.response-content {
    margin-bottom: 2rem;
}

.verse-section,
.reflection-section,
.prayer-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.verse-section h4,
.reflection-section h4,
.prayer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.verse-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--foreground-color);
    margin-bottom: 0.5rem;
}

.verse-text cite {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    font-style: normal;
    font-weight: 500;
}

.reflection-section p,
.prayer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground-color);
    margin-bottom: 0;
}

.response-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.response-actions .btn {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.response-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Loading animation */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive para seção de mensagem */
@media (max-width: 768px) {
    .message-container,
    .response-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .message-body textarea {
        min-height: 120px;
        padding: 1.25rem;
    }
    
    .response-actions {
        flex-direction: column;
    }
    
    .response-actions .btn {
        width: 100%;
    }
    
    .verse-text {
        font-size: 1rem;
    }
}
