/* ===================================
   HONGOS.CSS - Estilos específicos para la página de hongos medicinales
   =================================== */

/* Sección principal de hongos */
.fungi-content {
    padding: 60px 0;
}

/* Estilos para las características principales */
.fungi-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.fungi-feature {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fungi-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,86,179,0.1);
}

.fungi-feature i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
    display: block;
}

.fungi-feature span {
    font-weight: 600;
    color: #212529;
}

/* Grilla de productos de hongos */
.fungi-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.fungi-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fungi-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #00a0e9);
}

.fungi-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,86,179,0.15);
}

.fungi-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056b3, #00a0e9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.fungi-name {
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.fungi-aka {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15px;
}

.fungi-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fungi-description p {
    margin: 0;
}

/* Sección de beneficios de los hongos */
.fungi-benefits {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.fungi-benefits h4 {
    color: #0056b3;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fungi-benefits h4::before {
    content: '✨';
    font-size: 1.2rem;
}

.fungi-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fungi-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fungi-benefits li:last-child {
    border-bottom: none;
}

.fungi-benefits li::before {
    content: '🍄';
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fungi-benefits li strong {
    color: #0056b3;
    font-weight: 600;
}

/* Animaciones especiales para hongos */
@keyframes sporeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.floating-spore {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00a0e9, #0056b3);
    border-radius: 50%;
    animation: sporeFloat 4s ease-in-out infinite;
}

.floating-spore:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-spore:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
.floating-spore:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.floating-spore:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }

/* Estilos responsivos para hongos */
@media (max-width: 768px) {
    .fungi-products {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fungi-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fungi-item {
        padding: 20px;
    }
    
    .fungi-benefits {
        padding: 20px;
    }
    
    .fungi-benefits li {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .fungi-content {
        padding: 40px 0;
    }
    
    .fungi-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .fungi-name {
        font-size: 1rem;
    }
    
    .fungi-aka {
        font-size: 0.85rem;
    }
    
    .fungi-description {
        font-size: 0.9rem;
    }
}

/* Integración con el hero de hongos */
.hero-simple .hero-features .hero-feature i[class*="seedling"],
.hero-simple .hero-features .hero-feature i[class*="microscope"],
.hero-simple .hero-features .hero-feature i[class*="balance"] {
    color: #00a0e9;
}

/* Estilos especiales para la decoración del hero de hongos */
.hero-decoration .floating-shape.shape-1 {
    background: linear-gradient(135deg, rgba(0,86,179,0.1), rgba(0,160,233,0.1));
    animation: mushroomGrow 8s ease-in-out infinite;
}

.hero-decoration .floating-shape.shape-2 {
    background: linear-gradient(135deg, rgba(0,160,233,0.15), rgba(0,86,179,0.15));
    animation: mushroomGrow 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes mushroomGrow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2) rotate(5deg);
        opacity: 0.6;
    }
}

/* Estilo para etiquetas de producto */
.fungi-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0056b3, #00a0e9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Hover effects mejorados */
.fungi-item:hover .fungi-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.fungi-item:hover .fungi-name {
    color: #0056b3;
}

/* Estilos para certificaciones */
.fungi-certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #0056b3;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,86,179,0.15);
}

.certification-badge i {
    font-size: 1.2rem;
    color: #00a0e9;
} 