/* Estilos Sección Gominolas / Fórmulas */
.gummies {
    /* padding: 80px 0; */ /* Heredado */
    background-color: #fff; /* Fondo específico */
}

/* Sección de la tabla de fórmulas */
/* .formulas-table-container y .formulas-table definidos en components/tables.css */
.formulas-section {
    margin-bottom: 50px;
}

/* Sección de presentación de productos (gominolas) */
.gummies-products-section { /* Renombrado para evitar conflicto con .products-section general */
    margin: 50px 0;
    padding: 40px; /* Añadir padding */
    background-color: #f8f9fa; /* Fondo ligero */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decoración superior */
.gummies-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Título de la sección de productos */
.gummies-products-section .section-title { /* Usar título genérico o uno específico */
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    /* Hereda otros estilos */
}

/* Grid de productos */
.products-list { /* Reutilizando clase de style13 */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Espacio aumentado */
    margin-top: 30px;
    margin-bottom: 20px;
}

.product-item { /* Cada gominola */
    background-color: #fff;
    border-radius: 12px; /* Radio ajustado */
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

/* Fondo animado en hover */
.product-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.05), transparent);
    transition: height 0.4s ease;
    z-index: -1;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-color);
}

.product-item:hover::after {
    height: 100%;
}

/* Título del producto */
.product-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px; /* Más espacio */
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Línea bajo el título */
.product-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.product-item:hover h3::after {
    width: 60px;
}

/* Descripción del producto */
.product-item p {
    color: var(--grey-color);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Nota adicional */
.note { /* Estilo genérico de nota */
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px; /* Espacio aumentado */
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
    background-color: #f5f9ff;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    display: inline-block;
}

/* Caja CTA específica para Gominolas */
.cta-box { /* Reutilizando clase de style13 */
    margin: 60px 0 40px;
    padding: 50px 40px; /* Padding aumentado */
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf7ff 100%); /* Tono azulado */
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

/* Decoraciones del CTA */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px; /* Aumentado */
    height: 150px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px; /* Aumentado */
    height: 120px;
    background: radial-gradient(circle, rgba(0, 160, 233, 0.08) 0%, transparent 70%); /* Color secundario */
    border-radius: 50%;
    z-index: 0;
}

.cta-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Línea bajo título CTA */
.cta-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1.5px;
}

.cta-box p {
    color: var(--dark-color); /* #444 */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px; /* Aumentado */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Botón del CTA */
.cta-box .btn { /* Usar botón genérico */
    display: inline-block;
    padding: 14px 35px; /* Padding ajustado */
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); /* Gradiente */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
}

/* Efecto hover botón */
.cta-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.cta-box .btn:hover::before {
    left: 0;
}

/* Nota: Estilos responsivos irán en responsive.css */ 