/* ==========================================================
   CIROLO INSUMOS
   Hoja de estilos principal
   Versión: 0.2.0
========================================================== */

/* ---------- Variables ---------- */

:root{

    --color-principal:#2b5d50;
    --color-secundario:#e6f1ee;
    --color-fondo:#f5f5f5;
    --color-texto:#333;
    --color-blanco:#ffffff;
    --color-borde:#dddddd;

    --radio:12px;

}

/* ---------- General ---------- */

body{

    background:var(--color-fondo);
    color:var(--color-texto);

}

.contenedor{

    width:min(1200px,90%);
    margin:auto;

}

/* ---------- Header ---------- */

header{

    background:var(--color-principal);
    color:white;
    padding:25px 0;
    margin-bottom:40px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

header h1{

    text-align:center;
    font-size:2rem;
    letter-spacing:2px;

}

/* ---------- Loader ---------- */

#loader{

    text-align:center;
    font-size:1.2rem;
    padding:60px 20px;
    color:#666;

}

/* ---------- Grid ---------- */

.grid-productos{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));

    gap:25px;

    margin-bottom:60px;

}

/* ---------- Tarjeta ---------- */

.producto{

    background:white;

    border-radius:var(--radio);

    overflow:hidden;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

    transition:.25s;

    display:flex;

    flex-direction:column;

}

.producto:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

/* ---------- Imagen ---------- */

.producto img{

    width:100%;

    height:240px;

    object-fit:cover;

    background:#efefef;

}

/* ---------- Contenido ---------- */

.producto-contenido{

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:10px;

    flex:1;

}

.producto h2{

    font-size:1.15rem;

    line-height:1.3;

}

.precio{

    font-size:1.4rem;

    font-weight:bold;

    color:var(--color-principal);

}

.descripcion{

    color:#666;

    font-size:.92rem;

    flex:1;

}

/* ---------- Botón ---------- */

.boton{

    display:block;

    text-align:center;

    background:var(--color-principal);

    color:white;

    padding:12px;

    border-radius:8px;

    margin-top:15px;

    transition:.2s;

    font-weight:bold;

}

.boton:hover{

    background:#23483f;

}

/* ---------- Footer ---------- */

footer{

    margin-top:60px;

    padding:25px;

    text-align:center;

    background:white;

    border-top:1px solid var(--color-borde);

    color:#777;

}

/* ---------- Responsive ---------- */

@media(max-width:600px){

    header h1{

        font-size:1.5rem;

    }

    .producto img{

        height:200px;

    }

}