/* ======================== GENERAL STYLES ======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ======================== NAVIGATION BAR ======================== */

.navbar {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: contain;
    background: white;
    padding: 0;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* ======================== HERO SECTION ======================== */

.hero {
    position: relative;
    min-height: 600px;
    color: white;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 40, 21, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ======================== BUTTONS ======================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid white;
}

.btn-whatsapp:hover {
    background: white;
    color: #25D366;
    transform: translateY(-2px);
}


/* ======================== STATS SECTION ======================== */

.stats {
    background: white;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #25D366;
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
}


/* ======================== FEATURED PRODUCTS SECTION ======================== */

.featured {
    padding: 80px 20px;
    background: white;
}

.featured .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    font-size: 2.5rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    transform: translateY(-5px);
}

.product-image {
    height: 160px;
    border: 2px dashed #cfd8dc;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef5ef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.8rem;
    color: #25D366;
    font-weight: bold;
    margin: 0.7rem 0;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.product-order-btn {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 10px 16px;
    border-radius: 5px;
    background: #25D366;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.product-order-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}


/* ======================== GALLERY SECTION ======================== */

.gallery-hero {
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    text-align: center;
}

.gallery-section {
    padding: 60px 20px 80px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-card h3 {
    padding: 12px 15px 15px;
    color: #1a472a;
    font-size: 1rem;
}


/* ======================== WHY US SECTION ======================== */

.why-us {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    padding: 80px 20px;
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
}

.benefit i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
    display: block;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    opacity: 0.9;
}


/* ======================== CONTACT SECTION ======================== */

.contact-section {
    background: white;
    padding: 80px 20px;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #25D366;
    transition: all 0.3s;
}

.info-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.info-box i {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 1rem;
    display: block;
}

.info-box h4 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #25D366;
    font-weight: bold;
    transition: color 0.3s;
}

.info-box a:hover {
    color: #128C7E;
}


/* ======================== RESPONSIVE DESIGN ======================== */

@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .hero {
        min-height: 500px;
        padding: 80px 20px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }
    .logo {
        font-size: 1.4rem;
        gap: 0.5rem;
    }
    .site-logo {
        width: 48px;
        height: 48px;
    }
    .nav-menu {
        gap: 0.4rem;
    }
    .nav-menu a {
        padding: 0.45rem 0.7rem;
        font-size: 0.95rem;
    }
    .hero {
        min-height: 450px;
        padding: 70px 15px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        display: block;
        margin: 10px auto;
    }
    .stats,
    .products-grid,
    .benefits,
    .contact-info,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .product-card,
    .info-box,
    .stat-card {
        padding: 20px;
    }
    .featured,
    .why-us,
    .contact-section,
    .testimonials,
    .gallery-section {
        padding: 60px 15px;
    }
    .featured h2,
    .why-us h2,
    .contact-section h2,
    .testimonials h2 {
        font-size: 2rem;
    }
}


/* ======================== TESTIMONIALS SECTION ======================== */

.testimonials {
    background: white;
    padding: 80px 20px;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.testimonial-card .stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.author-info h4 {
    color: #1a472a;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info p {
    color: #25D366;
    font-size: 0.85rem;
    font-weight: 600;
}


/* ======================== FOOTER ======================== */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h4 {
    color: #25D366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}


/* ======================== WHATSAPP FLOATING BUTTON ======================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 50;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* ======================== PRICING TABLE ======================== */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table tr:hover {
    background: #f8f9fa;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}


/* ======================== CONTACT FORM ======================== */

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a472a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.3);
}


/* ======================== ANIMATIONS ======================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ======================== PAGE SPECIFIC STYLES ======================== */

.page-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content h2 {
    color: #1a472a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.page-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


/* ======================== RESPONSIVE DESIGN ======================== */

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .featured h2,
    .why-us h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .products-grid,
    .benefits,
    .contact-info {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .contact-form-container {
        padding: 20px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .nav-menu {
        gap: 0.5rem;
    }
    .nav-menu a {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }
    .btn {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
}