/* Custom CSS for Sílica Beauty */
* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #cc009c;
    --primary-dark: #7d0062;
    --secondary-color: #ffffff;
    --accent-color: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-hero: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f3e8ff 100%);
    --gradient-beauty: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --beauty-pink: #f8d7da;
    --beauty-rose: #fce4ec;
    --beauty-gold: #fff8e1;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 0, 156, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 156, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 156, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 156, 0.3);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23cc009c" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    z-index: 1;
}

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

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    border: 3px solid rgba(204, 0, 156, 0.1);
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(204, 0, 156, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 0, 156, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(204, 0, 156, 0.2);
    background: rgba(255, 255, 255, 1);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Cards */
.benefit-card, .resource-card, .platform-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(204, 0, 156, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(204, 0, 156, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before, .resource-card::before, .platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before, .resource-card:hover::before, .platform-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover, .resource-card:hover, .platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 156, 0.15);
}

.benefit-icon, .resource-icon, .platform-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(204, 0, 156, 0.3);
}

.benefit-card h4, .resource-card h4, .platform-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card p, .resource-card p, .platform-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(204, 0, 156, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(204, 0, 156, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(204, 0, 156, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(204, 0, 156, 0.3);
}

.feature-content h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-content ul {
    color: var(--text-light);
    padding-left: 20px;
}

.feature-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* CTA Sections */
.cta-intermediate {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-intermediate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-intermediate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 156, 0.9), rgba(125, 0, 98, 0.9));
    z-index: 2;
}

.cta-intermediate .container {
    position: relative;
    z-index: 3;
}

.cta-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-final-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    color: white;
    position: relative;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="40" cy="40" r="3"/></g></svg>');
    z-index: 1;
}

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

/* Big Numbers Section */
.big-numbers-section {
    background: var(--primary-dark);
    padding: 80px 0;
    color: white;
    position: relative;
}

.big-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #5a0045 100%);
    z-index: 1;
}

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

.big-number h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.big-number p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(204, 0, 156, 0.08);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 25px 30px;
    font-size: 1.1rem;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-body {
    padding: 25px 30px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: #1a202c !important;
}

.footer h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Beauty-specific enhancements */
.hero-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f3e8ff 70%, #e0e7ff 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .big-number h3 {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 25px;
    }
    
    .big-number h3 {
        font-size: 2rem;
    }
    
    .big-number p {
        font-size: 0.85rem;
    }
    
    .benefit-card, .resource-card, .platform-card {
        padding: 25px;
    }
    
    .benefit-icon, .resource-icon, .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

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

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* Custom utilities */
.text-primary {
    color: var(--primary-color) !important;
}

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

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced beauty theme */
.benefit-item, .benefit-card, .resource-card, .platform-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 231, 243, 0.1));
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero-section,
    .cta-intermediate,
    .cta-final-section,
    .big-numbers-section {
        background: white !important;
        color: black !important;
    }
}