/* Estilos generales */
.eco-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.eco-header {
    text-align: center;
    margin-bottom: 50px;
}

.eco-main-title {
    font-size: 2.8rem;
    color: #e7eceb;
    margin-bottom: 15px;
    font-weight: 700;
}

.eco-subtitle {
    font-size: 1.2rem;
    color: #e2e4e3;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de productos */
.eco-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
        align-items: end;
}

/* Tarjeta de producto */
.eco-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0f2e9;
}

.eco-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 127, 98, 0.1);
}

/* Contenedor de imagen */
.eco-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.eco-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eco-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 127, 98, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.eco-image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.eco-image-overlay span {
    font-weight: 600;
}

.eco-product-card:hover .eco-image-overlay {
    opacity: 1;
}

.eco-product-card:hover .eco-product-image {
    transform: scale(1.05);
}

/* Información del producto */
.eco-product-info {
    padding: 25px;
}

.eco-product-title {
    font-size: 1.5rem;
    color: #2a7f62;
    margin-bottom: 15px;
    font-weight: 600;
}

.eco-product-description {
    color: #5a8d7b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.eco-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-features-list li {
    margin-bottom: 10px;
    color: #3a6b5a;
    display: flex;
    align-items: center;
}

.eco-features-list i {
    color: #2a7f62;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Lightbox */
.eco-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.eco-lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 70vh;
    margin: 2% auto 0;
    border-radius: 5px;
}

.eco-lightbox-info {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.eco-lightbox-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.eco-lightbox-description {
    color: #ddd;
    line-height: 1.6;
}

.eco-close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.eco-close-lightbox:hover {
    color: #2a7f62;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .eco-products-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-main-title {
        font-size: 2.2rem;
    }
    
    .eco-lightbox-content {
        max-width: 95%;
        max-height: 60vh;
    }
}

/* segundo

/* Estilos generales */
.corp-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.corp-header {
    text-align: center;
    margin-bottom: 50px;
}

.corp-main-title {
    font-size: 2.8rem;
    color: #ebebeb;
    margin-bottom: 15px;
    font-weight: 700;
}

.corp-subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de productos */
.corp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: end;
}

/* Tarjeta de producto */
.corp-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e7ed;
}

.corp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
}

/* Contenedor de imagen */
.corp-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.corp-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corp-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.corp-image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.corp-image-overlay span {
    font-weight: 600;
}

.corp-product-card:hover .corp-image-overlay {
    opacity: 1;
}

.corp-product-card:hover .corp-product-image {
    transform: scale(1.05);
}

/* Información del producto */
.corp-product-info {
    padding: 25px;
}

.corp-product-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.corp-product-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.corp-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-features-list li {
    margin-bottom: 10px;
    color: #34495e;
    display: flex;
    align-items: center;
}

.corp-features-list i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Lightbox */
.corp-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.corp-lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 70vh;
    margin: 2% auto 0;
    border-radius: 5px;
}

.corp-lightbox-info {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.corp-lightbox-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.corp-lightbox-description {
    color: #ddd;
    line-height: 1.6;
}

.corp-close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.corp-close-lightbox:hover {
    color: #3498db;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .corp-products-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-main-title {
        font-size: 2.2rem;
    }
    
    .corp-lightbox-content {
        max-width: 95%;
        max-height: 60vh;
    }
}

/* codigos

/* Estilos generales */
.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* Filtros de categorías */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #495057;
}

.filter-btn:hover, .filter-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Grid de productos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Tarjeta de producto */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.new-badge {
    background: #2ecc71;
}

/* Contenedor de imagen */
.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.zoom-text {
    font-weight: 600;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Contenido del producto */
.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    margin-bottom: 0.8rem;
    color: #495057;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-features i {
    color: #3498db;
    margin-right: 0.7rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* Botones */
.product-actions {
    display: flex;
    justify-content: center;
}

.btn-primary {
    padding: 0.7rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-primary i {
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    display: block;
    max-width: 85%;
    max-height: 80vh;
    margin: 2% auto 0;
    border-radius: 5px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 80%;
    margin: 0 auto;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: #3498db;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .close-lightbox {
        top: 15px;
        right: 25px;
        font-size: 30px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}