/* =====================================================
   1. ESTILOS GENERALES
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #004080, #ffffff);
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}


/* =====================================================
   2. HEADER / MARCA
===================================================== */

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand .logo {
    height: 52px;
}

.brand-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: #004080;
    letter-spacing: 0.5px;
}

.header-wsp {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header-wsp:hover {
    background-color: #1eb85c;
    transform: translateY(-2px);
}


/* =====================================================
   3. HERO / BANNER OFERTA
===================================================== */

.hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 14px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

/* Etiqueta oferta */
.offer-tag {
    background: linear-gradient(135deg, #ff3d00, #ff9800);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: pulse-offer 2.5s infinite;
}

/* Título */
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 18px;
    opacity: 0.95;
}

/* Precio */
.hero-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
}

.hero-price .currency {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 6px;
}

.hero-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* Botón */
.hero-btn {
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.hero-btn:hover {
    background-color: #1eb85c;
    transform: translateY(-3px);
}


/* Animación oferta */
@keyframes pulse-offer {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,61,0,0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(255,152,0,0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,61,0,0.6);
    }
}



/* =====================================================
   BENEFICIOS – REEMPLAZO DEL CARRUSEL
===================================================== */

.benefits-section {
    padding: 80px 0;
    background: transparent; /* respeta tu azul/blanco */
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

.benefit-card img {
    width: 60px;
    margin-bottom: 18px;
}

.benefit-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #004080;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
}





/* =====================================================
   4. SECCIONES / PRODUCTOS
===================================================== */

.section-title {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}

.product-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}



./* ==============================
   BLOQUE OFERTA PRODUCTO
============================== */

.products-simple {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
}

.products-title {
    text-align: center;
    color: #004080;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.product-row img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.product-info h3 {
    margin-bottom: 8px;
    color: #00264d;
}

.product-info p {
    margin-bottom: 10px;
    color: #555;
}

.product-info a {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.product-info a:hover {
    background: #1eb85c;
}


/* ===============================
   AJUSTES SUAVES DE ESPACIADO
   =============================== */

/* Sección productos */
section.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Título principal */
.section-title {
    margin-bottom: 40px;
}

/* Subtítulos (Jaulas, Gallinas, Huevos) */
section h4 {
    margin-bottom: 25px;
    margin-top: 50px;
    font-weight: 600;
}

/* Espacio entre filas */
section .row {
    margin-bottom: 30px;
}

/* Cards */
.product-card {
    margin-bottom: 30px;
    border-radius: 10px;
}

/* Imagen dentro de la card */
.product-card img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Texto dentro de la card */
.product-card .card-body {
    text-align: center;
    padding: 18px;
}

/* Título card */
.product-card .card-title {
    margin-bottom: 8px;
}

/* Texto card */
.product-card .card-text {
    font-size: 0.95rem;
}








/* =====================================================
   6. CONTACTO
===================================================== */

.contact-section a {
    color: #007bff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.icon-class {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}


/* =====================================================
   7. FOOTER
===================================================== */

footer {
    background-color: #ffffff;
    color: #00264d;
    text-align: center;
    padding: 22px 0;
    margin-top: 60px;
    font-weight: 600;
}


/* =====================================================
   8. BOTÓN FLOTANTE WHATSAPP
===================================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0px 6px 16px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #1eb85c;
}


/* =====================================================
   9. RESPONSIVE (MÓVIL)
===================================================== */

@media (max-width: 768px) {

    .top-header {
        flex-direction: column;
        gap: 12px;
    }

    .hero-banner {
        height: 360px;
        border-radius: 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-price .amount {
        font-size: 2.4rem;
    }

    .hero-btn {
        padding: 12px 26px;
    }
}



/* ===============================
   AJUSTES FINOS PRODUCTOS
=============================== */

.section-title {
    margin-bottom: 50px;
}

section h4 {
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.product-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}

.product-card img {
    height: 220px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 18px;
}

.product-card .card-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card .card-text {
    font-size: 0.95rem;
    color: #555;
}
