/* ===== Variables ===== */
:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --tertiary-color: #198754;
    --warning-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-green: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-dark-green: linear-gradient(135deg, #198754 0%, #28a745 100%);
    --gradient-warning: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== Navigation ===== */
#mainNav {
    background: rgba(25, 135, 84, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mainNav.navbar-scrolled {
    background: var(--tertiary-color);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand i {
    color: var(--warning-color);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

#mainNav.navbar-scrolled {
    background: var(--tertiary-color);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--success-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2rem;
}

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

.feature-item i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.hero-cta {
    margin-bottom: 2rem;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge-item i {
    font-size: 1.2rem;
}

/* Floating Product Animation */
.floating-product {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; right: 15%; animation-delay: 2s; }
.element-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* ===== Product Section ===== */
.product-section {
    padding: 5rem 0;
    background: var(--white);
}

.technology-points {
    margin: 2rem 0;
}

.tech-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.7rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tech-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tech-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.tech-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.certification-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.ingredient-list {
    list-style: none;
    padding: 0;
}

.ingredient-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.ingredient-list i {
    margin-right: 0.5rem;
}

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

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

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

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

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.benefit-stats {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--warning-color);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--warning-color);
}

.testimonial-info h5 {
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    font-size: 0.9rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.before-after {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.before, .after {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.before {
    background: var(--gray-light);
    color: var(--gray);
}

.after {
    background: var(--success-color);
    color: var(--white);
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-badge i {
    margin-right: 0.3rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--warning-color);
    color: var(--dark-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background: var(--white);
    color: var(--gray);
    line-height: 1.8;
    padding: 1.5rem;
}

/* ===== Purchase Section ===== */
.purchase-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.offer-timer {
    display: inline-block;
}

.timer-badge {
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.timer-badge i {
    margin-right: 0.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border: 3px solid var(--warning-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.most-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.5rem 2rem;
    border-radius: 0 0 25px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    margin-right: 0.2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.cents {
    font-size: 1.5rem;
    align-self: flex-start;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.discount-badge {
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.discount-badge.bigger {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
}

.pricing-body {
    padding: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.feature-list i {
    margin-right: 0.8rem;
}

.purchase-form {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    margin-top: 3rem;
}

.form-container {
    padding: 3rem;
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.9;
}

.security-item i {
    font-size: 1.3rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color) !important;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: var(--warning-color);
}

.social-links a {
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--warning-color) !important;
}

.certifications img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: var(--white);
    border-radius: 4px;
    padding: 5px;
}

/* ===== Back to Top Button ===== */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tech-point {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 2rem 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
    }
    
    .most-popular {
        font-size: 0.8rem;
        padding: 0.4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency, .cents {
        font-size: 1.2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--success-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary-color);
}

/* ===== Loading Animation ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* ===== Utility Classes ===== */
.text-pink {
    color: #e91e63 !important;
}

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

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

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

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

/* Botões Verde Personalizados */
.btn-green {
    background: var(--gradient-green);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-green:hover {
    background: var(--gradient-dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-green:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-green {
    border: 2px solid var(--success-color);
    color: var(--success-color);
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-outline-green:hover {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
    transform: translateY(-2px);
}

/* Ajustes de Texto Verde */
.text-green {
    color: var(--success-color) !important;
}

.text-green-dark {
    color: var(--tertiary-color) !important;
}

/* Ajustes de gradiente para tons de verde */
.gradient-green-light {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.gradient-green-dark {
    background: linear-gradient(135deg, #155724 0%, #28a745 100%);
}

.shadow-lg {
    box-shadow: var(--shadow-heavy) !important;
}

.rounded-3 {
    border-radius: var(--border-radius) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

/* ===== Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in-left {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    transform: translateX(0);
    opacity: 1;
}

.slide-in-right {
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    transform: translateX(0);
    opacity: 1;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    position: relative;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

/* ===== Print Styles ===== */
@media print {
    .navbar, .btn, #backToTop, .social-links {
        display: none !important;
    }
    
    .hero-section {
        background: var(--white) !important;
        color: var(--dark-color) !important;
    }
    
    .section-title, .section-subtitle {
        color: var(--dark-color) !important;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8fff8 100%);
    position: relative;
    overflow: hidden;
}

.gallery-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"><defs><pattern id="gallery-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8f5e8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
    z-index: 0;
}

.gallery-container {
    position: relative;
    z-index: 1;
}

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

.gallery-item {
    perspective: 1000px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.9), rgba(46, 204, 113, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-content .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-card:hover .gallery-content h5,
.gallery-card:hover .gallery-content p,
.gallery-card:hover .gallery-content .btn {
    transform: translateY(0);
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.gallery-description i {
    margin-right: 0.5rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-content h5 {
        font-size: 1.3rem;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image-wrapper {
        aspect-ratio: 16/9;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--light-color);
}