/* Custom CSS for Ministério Kids Landing Page */

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --success-color: #96CEB4;
    --warning-color: #FFEAA7;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --background-light: #F8F9FA;
    --background-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in.visible {
    animation-delay: 0.2s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="90" r="1.8" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Buttons */
.cta-button, .cta-button-final {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button:hover, .cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #ff5252;
}

.cta-button-final {
    background: var(--success-color);
    font-size: 1.2rem;
    padding: 18px 40px;
}

.cta-button-final:hover {
    background: #7cb69b;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--background-light);
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Target Audience Section */
.audience-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--background-light);
}

.benefits-list {
    padding: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    min-width: 20px;
}

.benefit-item.highlight {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--warning-color);
}

.benefit-item.highlight i {
    color: var(--warning-color);
}

/* Benefits Image */
.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.benefits-image img:hover {
    transform: translateY(-5px);
}

.image-caption p {
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('background-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    color: var(--text-light);
}

/* Bonus Section */
.bonus-section {
    background: var(--background-light);
}

.bonus-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 3px solid var(--warning-color);
    position: relative;
}

.bonus-card::before {
    content: '🎁';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bonus-item i {
    color: var(--warning-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    min-width: 20px;
}

.bonus-item.highlight {
    background: var(--warning-color);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.bonus-item.highlight i {
    color: var(--text-dark);
}

/* Final CTA Section */
.final-cta-section {
    background: var(--background-gradient);
    color: white;
}

.cta-card {
    background: white;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.cents {
    font-size: 2rem;
    vertical-align: super;
}

.guarantee {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.secure-badges {
    opacity: 0.7;
}

.secure-badges i {
    font-size: 1.5rem;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .step-card, .audience-card, .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .cta-button, .cta-button-final {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .hero-image img, .benefits-image img {
        margin-bottom: 2rem;
    }
    
    .testimonials-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-item, .bonus-item {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
