* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f2;
    color: #1f2d1f;
}

body.menu-abierto {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    width: 100%;
    height: 80px;
    padding: 0 40px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.logo-img {
    width: 170px;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-weight: 700;
    color: #176b2c;
    text-transform: uppercase;
    font-size: 14px;
}

.nav a:hover {
    color: #0f441c;
}

.header-icon {
    background: none;
    border: none;
    color: #176b2c;
    font-size: 22px;
    cursor: pointer;
}

.menu-btn,
.close-menu,
.menu-title {
    display: none;
}

.btn {
    display: inline-block;
    background: #176b2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background: #0f441c;
}

.hero {
    min-height: calc(100vh - 80px);
    padding: 70px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.tag {
    display: inline-block;
    background: #dff3df;
    color: #176b2c;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    color: #176b2c;
    margin-bottom: 22px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 620px;
}

.features {
    padding: 80px 8%;
    text-align: center;
    background: #ffffff;
}

.features h2,
.productos h2,
.impact h2,
.cta-section h2 {
    font-size: 36px;
    color: #176b2c;
    margin-bottom: 18px;
}

.section-description {
    max-width: 820px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: #f7f7f2;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 110px;
    margin-bottom: 20px;
}

.card h3 {
    color: #176b2c;
    margin-bottom: 15px;
}

.card p {
    line-height: 1.7;
}

.footer {
    background: #176b2c;
    color: #ffffff;
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #ffffff;
}

.redes-icons {
    display: flex;
    gap: 16px;
    font-size: 24px;
}

.mapa-footer iframe {
    width: 100%;
    height: 150px;
    border: 0;
    border-radius: 16px;
}

.copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .menu-btn {
        display: block;
    }

    .logo-img {
        width: 145px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 22px;
        transition: left 0.3s ease;
        z-index: 1200;
    }

    .nav.activo {
        left: 0;
    }

    .close-menu,
    .menu-title {
        display: block;
    }

    .close-menu {
        background: none;
        border: none;
        font-size: 26px;
        color: #176b2c;
        align-self: flex-end;
    }

    .menu-title {
        color: #176b2c;
        margin-bottom: 10px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .redes-icons {
        justify-content: center;
    }
}
.menu-wordpress {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.menu-wordpress li {
    list-style: none;
}

.menu-wordpress a {
    font-weight: 700;
    color: #176b2c;
    text-transform: uppercase;
    font-size: 14px;
}
.productos {
    padding: 80px 8%;
    background: #f7f7f2;
    text-align: center;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.producto {
    background: #ffffff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.producto img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin-bottom: 20px;
}

.producto h3 {
    margin-bottom: 20px;
    color: #176b2c;
}

.btn-outline {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: 2px solid #176b2c;
    background: transparent;
    color: #176b2c;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-outline:hover {
    background: #176b2c;
    color: #ffffff;
}

.producto .btn {
    width: 100%;
}

.impact {
    padding: 80px 8%;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.impact p {
    line-height: 1.8;
}

.impact-data {
    display: grid;
    gap: 20px;
}

.impact-data div {
    background: #f7f7f2;
    padding: 25px;
    border-radius: 20px;
}

.impact-data strong {
    display: block;
    font-size: 28px;
    color: #176b2c;
    margin-bottom: 8px;
}

.cta-section {
    padding: 90px 8%;
    text-align: center;
    background: #dff3df;
}

.cta-section p {
    margin: 20px 0 30px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1100;
}

.overlay.activo {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1300;
    padding: 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-panel.activo {
    right: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    color: #176b2c;
    cursor: pointer;
    margin-bottom: 20px;
}

.cart-count {
    margin: 20px 0;
    font-weight: 700;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f2;
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 12px;
}

.cart-item button {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 18px;
    cursor: pointer;
}

.modal,
.modal-contacto {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1400;
    padding: 20px;
}

.modal.activo,
.modal-contacto.activo {
    display: flex;
}

.modal-content,
.form-contacto {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 35px;
    position: relative;
}

.modal-content img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: #176b2c;
}

.modal-content p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.cerrar-modal,
.cerrar-modal-contacto {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #176b2c;
}

.form-contacto h2 {
    margin-bottom: 25px;
    color: #176b2c;
}

.form-contacto form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contacto input,
.form-contacto textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    font-size: 15px;
}

.form-contacto textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 992px) {

    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .cart-panel {
        width: 100%;
    }

    .impact {
        padding: 60px 25px;
    }

}
.cart-panel {
    position: fixed !important;
    top: 0 !important;
    right: -420px !important;
    width: 400px !important;
    max-width: 100% !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 1300 !important;
}

.cart-panel.activo {
    right: 0 !important;
}

.modal,
.modal-contacto {
    display: none !important;
}

.modal.activo,
.modal-contacto.activo {
    display: flex !important;
}
.features .card {
    position: relative;
    text-align: center;
    padding-top: 60px;
}

.feature-open {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #176b2c;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 15px;
}

.feature-open:hover {
    transform: scale(1.08);
    background: #0f4d1f;
}

.features .card h3 {
    margin-top: 10px;
}