/* assets/css/style.css */

:root {
    --color-primario: #17509F; /* Azul */
    --color-secundario: #E50140; /* Rosa/Rojo */
    --color-fondo: #ffffff;
    --color-texto: #333;
    --color-blanco: #fff;
    --color-gris-claro: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-fondo);
    color: var(--color-texto);
}

/* --- Header y Navegación --- */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.search-form .form-control {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.search-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
}
.search-form .btn:hover {
    background-color: #c40136;
    border-color: #c40136;
}

.nav-link {
    font-weight: 500;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay oscuro para legibilidad */
}

.hero-content {
    position: relative; /* Para que esté por encima del overlay */
    z-index: 1;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* --- Contenido Principal --- */
.main-content {
    min-height: 70vh;
    padding-bottom: 2rem;
}

.section-title {
    color: var(--color-primario);
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

/* --- SECCIÓN DE CARACTERÍSTICAS --- */
.features-section {
    padding: 3rem 0;
    background-color: var(--color-gris-claro);
}

.feature-box {
    background-color: var(--color-blanco);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px 5px rgba(229, 1, 64, 0.25); /* Efecto de contorno rojo */
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--color-secundario);
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--color-primario);
    margin-bottom: 0.5rem;
}

/* --- SECCIÓN MISIÓN/VISIÓN --- */
.mission-section {
    padding: 3rem 0;
    background-color: var(--color-primario); /* Fondo azul principal */
}

.mission-section .section-title {
    color: var(--color-blanco); /* Título en blanco para que contraste */
}

.mission-box {
    background-color: rgba(255, 255, 255, 0.05); /* Un fondo ligeramente más claro para el contenedor */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    color: var(--color-blanco); /* Texto en blanco */
}

.mission-box i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-secundario); /* Iconos en color secundario para resaltar */
}

.mission-box h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-secundario);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.mission-box p {
    font-weight: 300;
    line-height: 1.7;
}


/* --- Tarjetas de Categoría/Producto --- */
.card-product {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: var(--color-texto);
    overflow: hidden;
}
.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--color-secundario);
}
.card-product-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-product .card-body {
    padding: 1.5rem;
}
.card-product .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primario);
    color: var(--color-blanco);
    padding: 2rem 0;
    margin-top: 0; /* Lo quitamos porque ahora la sección de misión puede ser la última */
}
.footer p {
    margin: 0;
}

/* --- BOTÓN DE WHATSAPP FLOTANTE --- */
.whatsapp-flotante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
    color: #FFF;
}