/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e40af;
}

.section-title.white {
    color: white;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4b5563;
}

.section-intro.white {
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.8)), 
                url('entidades_juntas.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-text .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 1rem 0;
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e40af;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: 3px solid #fbbf24;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cta-button.large {
    padding: 22px 44px;
    font-size: 1.2rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: #3b82f6;
}

.highlight-card {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Falange Section */
.falange-section {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9)), 
                url('ritual_circulo.png') center/cover no-repeat;
    position: relative;
    color: white;
}

.falange-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85));
}

.falange-section .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-content p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Símbolo Section */
.simbolo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.simbolo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simbolo-benefits {
    margin-top: 2rem;
}

.simbolo-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
    border-left: 4px solid #fbbf24;
}

.simbolo-icon {
    font-size: 1.5rem;
    color: #1e40af;
    flex-shrink: 0;
}

.simbolo-benefit strong {
    color: #1e40af;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.simbolo-benefit p {
    color: #4b5563;
    margin: 0;
}

.simbolo-visual {
    text-align: center;
}

.simbolo-example {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
    border: 3px solid #fbbf24;
}

.simbolo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.simbolo-caption {
    color: #4b5563;
    font-style: italic;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.team-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
}

.team-info h3 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.team-logo {
    text-align: center;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9)), 
                url('ritual_umbanda.jpeg') center/cover no-repeat;
    position: relative;
    color: white;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-check {
    font-size: 1.5rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-text p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Target Section */
.target-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: #fbbf24;
}

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

.target-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.target-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.urgency-benefits ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 1rem auto 0;
}

.urgency-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.urgency-benefits li:before {
    content: "✓ ";
    color: #fbbf24;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9)), 
                url('familia_espiritual.jpeg') center/cover no-repeat;
    position: relative;
    color: white;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.offer-content {
    text-align: center;
}

.offer-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.offer-box {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 3rem;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid #fbbf24;
}

.offer-box h3 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.offer-features {
    text-align: left;
    margin: 2rem 0;
}

.offer-feature {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #1e40af;
    border-bottom: 1px solid #e2e8f0;
}

.offer-feature:last-child {
    border-bottom: none;
}

.offer-guarantee {
    font-style: italic;
    color: #4b5563;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
}

.faq-question {
    padding: 2rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h4 {
    color: #1e40af;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 64, 175, 0.95), rgba(59, 130, 246, 0.95)), 
                url('entidades_juntas.jpeg') center/cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-guarantee {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #fbbf24;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1e40af;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fbbf24;
    color: #1e40af;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .simbolo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .target-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .final-cta-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .target-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .offer-box {
        padding: 2rem;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.target-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.white {
    color: white !important;
}

