:root {
    --green-900: #1e5631;
    --green-600: #27ae60;
    --green-500: #2ecc71;
    --green-400: #58d68d;
    --green-100: #e8f8e8;
    --green-50: #f5fdf5;
    --white: #ffffff;
    --gray-700: #333;
    --gray-600: #555;
    --gray-500: #666;
    --dark: #2c3e50;
    --whatsapp: #25D366;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --shadow-sm: 0 5px 20px rgba(39, 174, 96, 0.1);
    --shadow-md: 0 10px 30px rgba(39, 174, 96, 0.15);
    --shadow-lg: 0 20px 50px rgba(39, 174, 96, 0.25);
    --transition: 0.3s ease;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
    background: var(--green-50);
}

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

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 50%, var(--green-500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-logo {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(46, 204, 113, 0.15);
    z-index: 1000;
    animation: slideDown 0.5s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-500));
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--green-600);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--green-600);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero / Slideshow */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 50%, var(--green-500) 100%);
}

.slideshow {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.85) 0%, rgba(39, 174, 96, 0.75) 100%);
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    position: relative;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    letter-spacing: 2px;
}

.slide-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    animation: fadeInUp 1s ease 0.3s backwards;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.animate-text {
    animation: fadeInUp 1s ease;
}

.slide-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    padding: 0;
}

.dot.active {
    background: var(--white);
    border-color: var(--green-500);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--white);
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 20;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

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

/* About */
.about {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2327ae60" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    color: var(--green-900);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--green-500));
    border-radius: 2px;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-600);
}

.about-ceo {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.about-ceo:hover {
    transform: translateY(-5px);
}

.ceo-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.ceo-title {
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
}

/* Stats section */
.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    position: relative;
    overflow: hidden;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1.5rem 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(46, 204, 113, 0.15);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-500);
}

.stat-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--white), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Products */
.products {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    padding: 100px 0;
}

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

.product-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-500);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-icon svg {
    width: 4rem;
    height: 4rem;
}

.product-card h3 {
    color: var(--green-900);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--gray-500);
    line-height: 1.8;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0faf0 0%, var(--green-100) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2327ae60" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.gallery-subtitle {
    text-align: center;
    color: var(--green-900);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    border: 2px solid var(--green-600);
    border-radius: 30px;
    color: var(--green-600);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
    transform: translateY(-2px);
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1rem;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-600);
    color: var(--green-600);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.85) 0%, rgba(39, 174, 96, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-item.hide {
    display: none;
}

.play-icon {
    font-size: 3rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform var(--transition);
}

.gallery-item[data-video]:hover .play-icon {
    transform: scale(1.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    z-index: 2;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Videos section */
.videos {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-50) 0%, #f0faf0 100%);
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2327ae60" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.videos-subtitle {
    text-align: center;
    color: var(--green-900);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.videos-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.videos-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1rem;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.videos-grid::-webkit-scrollbar {
    display: none;
}

.videos-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-600);
    color: var(--green-600);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.videos-nav:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.video-card {
    flex-shrink: 0;
    width: 360px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 280px;
    background: var(--green-900);
}

.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 280px;
    background: var(--green-900);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.7) 0%, rgba(39, 174, 96, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.video-play-btn {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.8);
    transition: transform 0.4s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.3);
    backdrop-filter: blur(5px);
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.video-card:hover .video-play-btn {
    transform: scale(1.15);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(30, 86, 49, 0.9));
    color: var(--white);
    z-index: 3;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.video-info p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: 4;
}

.video-card:hover::before {
    left: 100%;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2327ae60" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--green-900);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: var(--green-600);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-500);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--green-900);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-role {
    color: var(--green-600);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact */
.contact {
    background: var(--white);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--green-500);
}

.info-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
}

.info-item h3 {
    color: var(--green-900);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item a {
    color: var(--green-600);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.info-item a:hover {
    color: var(--green-500);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #e0f0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all var(--transition);
    background: var(--green-50);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.shake-input {
    border-color: #e74c3c !important;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Map */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--green-600);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 100%);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.footer-credit {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.footer-credit strong {
    color: var(--green-500);
    opacity: 1;
}

.footer-credit a {
    color: var(--green-500);
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

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

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

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    z-index: 9998;
    transition: all var(--transition);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.6);
}

/* Animations dynamiques injectées par JS */
@keyframes particleFade {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0) translateY(-50px); }
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(39, 174, 96, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-wrapper {
        flex-direction: column;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-item {
        width: 300px;
        height: 220px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-title {
        font-size: 1.6rem;
    }

    .stat-icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 0.6rem;
    }

    .stat-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }

    .about-text p {
        text-align: justify;
    }

    .videos-wrapper {
        flex-direction: column;
    }

    .videos-nav {
        display: none;
    }

    .video-card {
        width: 280px;
        height: 200px;
    }

    .video-play-btn {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
}
