:root {
    --convencional-primary: #855F31;      /* Marrón principal de Croven */
    --convencional-secondary: #C2B59B;    /* Marrón claro */
    --convencional-accent: #D4A76A;       /* Dorado suave */
    --convencional-gradient: linear-gradient(135deg, #855F31 0%, #C2B59B 100%);
    --convencional-light: #F5F0E6;
    --convencional-dark: #6B4C2C;
}

/* Hero Section Convencional */
.convencional-hero {
    position: relative;
    overflow: hidden;
}

.hero-slide-convencional {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: var(--convencional-gradient);
}

.hero-solid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--convencional-primary);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.05) 10px,
            rgba(255,255,255,0.05) 20px
        );
}

.hero-content-convencional {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title-convencional {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-title-convencional .highlight {
    color: #FFD700;
    position: relative;
}

.hero-subtitle-convencional {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Sección Qué es Convencional */
.what-is-convencional {
    background: white;
}

.technology-image-convencional .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--convencional-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--convencional-light);
    border-radius: 10px;
    border-left: 4px solid var(--convencional-accent);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--convencional-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h5 {
    color: var(--convencional-dark);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.step-content p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Ventajas */
.advantages-convencional {
    background: linear-gradient(135deg, #F9F7F3 0%, #F0ECE4 100%);
}

.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--convencional-accent);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--convencional-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--convencional-primary);
    font-size: 2rem;
}

.advantage-card h4 {
    color: var(--convencional-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Productos Convencionales */
.products-convencional {
    background: white;
}

.product-card-convencional {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}

.product-card-convencional:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(133, 95, 49, 0.15);
}

/* Contenedor con dimensiones fijas */
.product-image-convencional {
    position: relative;
    width: 100%;
    height: 250px; /* Altura fija */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa; /* Color de fondo si la imagen no carga */
}

/* Imagen que siempre cubre el contenedor */
.product-image-convencional img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo el espacio */
    object-position: center;
    transition: all 0.3s ease;
}

/* Para mantener proporción cuadrada en desktop */
@media (min-width: 768px) {
    .product-image-convencional {
        height: 100%; /* Toma toda la altura de la tarjeta */
        min-height: 250px;
    }
    
    /* O si quieres cuadradas */
    .product-image-convencional.square {
        aspect-ratio: 1 / 1; /* Relación 1:1 (cuadrado) */
        height: auto;
    }
}
.product-card-convencional:hover .product-image-convencional img {
    transform: scale(1.1);
}

.product-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--convencional-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-content-convencional {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-title-convencional {
    color: var(--convencional-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description-convencional {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--convencional-light);
    color: var(--convencional-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-product-details-convencional {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--convencional-primary);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--convencional-primary);
}

.btn-product-details-convencional:hover {
    background: white;
    color: var(--convencional-primary);
    transform: translateX(5px);
}

/* Sección Comparativa */
.comparison-section {
    background: linear-gradient(135deg, var(--convencional-dark) 0%, var(--convencional-primary) 100%);
}

.comparison-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.comparison-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.comparison-card.recommended {
    border: 2px solid var(--convencional-accent);
    position: relative;
}

.comparison-card.recommended::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--convencional-accent);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    z-index: 1;
}

.comparison-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.comparison-header h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.comparison-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.comparison-body {
    padding: 1.5rem 2rem;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.comparison-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.comparison-features li i {
    color: #4CAF50;
    margin-top: 3px;
}

.comparison-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.cta-convencional {
    background: linear-gradient(135deg, var(--convencional-primary) 0%, var(--convencional-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-convencional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-convencional .btn-primary {
    background: white;
    color: var(--convencional-primary);
    border: none;
    font-weight: 600;
}

.cta-convencional .btn-outline-light {
    border: 2px solid white;
    background: transparent;
}

.cta-convencional .btn-outline-light:hover {
    background: white;
    color: var(--convencional-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title-convencional {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .product-card-convencional {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slide-convencional {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title-convencional {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-convencional {
        font-size: 1.2rem;
    }
    
    .product-image-convencional {
        min-height: 200px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-slide-convencional {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-title-convencional {
        font-size: 1.8rem;
    }
    
    .product-card-convencional .row {
        flex-direction: column;
    }
    
    .product-content-convencional {
        padding: 1.5rem;
    }
}

/* CSS simplificado */
.hero-slide-convencional {
    position: relative;
    height: 70vh;
    min-height: 600px;
}

.hero-bg-image-convencional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.overlay-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(133, 95, 49, 0.4); /* Overlay marrón al 40% */
    z-index: 2;
}

.hero-content-convencional {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}