
/* ===========================
   CSS Global GreenHarvest
   =========================== */

/* Fuente principal: Montserrat para títulos, Lato para texto */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;600;700&display=swap');

/* Aplicar color y fuente global a todo el body */
body {
    font-family: 'Lato', sans-serif;
    color: #333333;          /* Gris oscuro para todo el texto */
    line-height: 1.6;
    background-color: #ffffff; /* Fondo blanco */
    margin: 0;
    padding: 0;
}

/* Encabezados con Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a1a; /* Encabezados más oscuros */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

/* Enlaces */
a {
    /*color: #0d6efd ;    */     /* Azul profesional */
    text-decoration: none;  
    /*transition: color 0.2s ease, font-size 0.2s ease !important; */
}


a:hover {
    /*color: #1a1a1a !important; */
    /*b ackground-color: #C4F2B8 !important;  */
    /* color: rgb(10, 9, 9) !important;  */
    /* font-style: italic !important; */
    font-style:italic !important;
    
}


/* Párrafos */
p {
    margin-bottom: 1em;
}

/* Tablas: texto gris oscuro y bordes suaves */
table {
    border-collapse: collapse;
    width: 100%;
    color: #333333;
}

th, td {
    padding: 0.75em 1em;
    border: 1px solid #e0e0e0;
}

th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Botones (opcional, si usas clases propias) */
button, .btn {
    font-family: 'Montserrat', sans-serif;
}

/* Formularios: inputs y textarea */
input, textarea, select {
    font-family: 'Lato', sans-serif;
    color: #333333;
}

/* Lista */
ul, ol {
    margin-bottom: 1em;
}

/* Resaltar texto importante */
strong {
    font-weight: 700;
    color: #1a1a1a;
}



/**************  Tarjeta hover 30/09/2025***************************/
.offer-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Imagen zoom */
.offer-image {
    transition: transform 0.3s;
}
.offer-card:hover .offer-image {
    transform: scale(1.05);
}

/* Overlay oculto por defecto */
.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 135, 84, 0.85); /* verde oscuro semi-transparente */
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1rem;
    text-align: center;
}
.offer-card:hover .offer-overlay {
    opacity: 1;
}

/* Botón añadir al carrito animado */
.add-cart-btn {
    transition: background-color 0.3s, transform 0.2s;
}
.add-cart-btn:hover {
    background-color: #ffc107;
    color: #212529;
    transform: translateY(-2px);
}

/* Texto responsive */
.offer-overlay h5 {
    font-size: 1.1rem;
}
.offer-overlay p {
    font-size: 0.95rem;
}



/* BreadCrum */

.breadcrumb-modern {
    font-size: 0.80rem;         /* Más pequeño que 'small' */
    background-color: transparent; /* Fondo limpio */
    padding: 0;                 /* Sin padding para un look minimalista */
    margin-bottom: 0;           /* Ajusta margen para que no se vea muy separado */
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    content: "›";               /* Usa un separador moderno (flecha) */
    color: #6c757d;             /* Gris suave */
    padding: 0 0.2rem;          /* Espacio entre items */
}

.breadcrumb-modern .breadcrumb-item a {
    color: #0d6efd;             /* Azul moderno para enlaces */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    color: #0a58ca;             /* Azul más oscuro al pasar el mouse */
    text-decoration: underline ;
}

.breadcrumb-modern .breadcrumb-item.active {
    color: #6c757d;             /* Color gris para el item activo */
    font-weight: 500;
}


/* Paginación * /

/* Cambiar color de fondo y tamaño */
.pagination .page-link {
    /* background-color: #28a745; /* Verde para tema ecológico */
    background-color: white;
    color: grey;
    /*border-color: #28a745;
    /* padding: 0.75rem 1rem; /* Aumentar tamaño */
     font-size: 0.70rem; /* Aumentar texto */
}

.pagination .page-link:hover {
    /* background-color: #218838;
    border-color: #1e7e34; */
    color: black;
}

.pagination .page-item.active .page-link {
    background-color: #e9ecef; 
    color: green;
}

.pagination .page-item.disabled .page-link {
    background-color: #e9ecef;
    color: #6c757d;
}


/* Para las tarjetas de Home 
.card-body {
    transition: all 2.0s ease;
    transform-style: preserve-3d;
}

.card-body:hover {
    background-color: #FAF9F7;
    cursor: pointer;
    transform: rotateY(180deg);
    transition: transform 2.0s ease;
}
    */