*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:white;
}

header{
    background:white;
    padding:15px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo img{
    height:90px;
    width:auto;
}

nav a{
    text-decoration:none;
    color:black;
    margin:0 15px;
    font-weight:bold;
}

header button{
    background:#c40000;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
}

.hero{
    height:80vh;
    background:url(lacteos.jpeg) center/cover;
    display: flex;
    align-items: center;
}

.hero-text{
    margin-left:80px;
    max-width:500px;
    color:white;
}

.subtitulo{
    color:#d61c1c;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;

}
.hero h1{
    font-size: 80px;
    margin-bottom: 15px;
    color: white;
    line-height: 1.1;
}

.hero span{
    color:#d60000;
    font-size: 95px;
}

.hero p{
    font-size:20px;
    line-height: 1.5;
}

.buttons{
    display:flex;
    gap:15px;
}

.btn-red{
    background:red;
    color:white;
    padding:15px 25px;
    border-radius:10px;
    text-decoration:none;
    display: inline-block;
    font-weight: bold;
}

.btn-white{
    background:white;
    color:black;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    display: inline-block;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:50px;
    background:white;
}

.benefits div{
    text-align:center;
}

.productos{
    padding:70px;
}

.productos h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    max-width:100%;
    height:auto;
    display:block;
}

.card h3{
    padding:15px;
}

.nosotros,
.contacto{
    padding:70px;
    background:white;
    margin-top:20px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
}

form button{
    background:#c40000;
    color:white;
    border:none;
    padding:15px;
    border-radius:8px;
}

footer{
    background:black;
    color:white;
    text-align:center;
    padding:20px;
}
.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    z-index: 9999;
}
.whatsapp:hover{
    transform: scale(1.1);
}
.whatsapp img{
    width: 35px;
    height: 35px;
    max-width:100%;
    height:auto;
    display:block;
}

html{
    scroll-behavior: smooth;
}
.titulo-catalogo{
    text-align:center;
    padding:50px 20px;
}

.titulo-catalogo h1{
    color:#c40000;
    font-size:50px;
}

.catalogo{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:40px;
}

.producto{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.producto:hover{
    transform:translateY(-8px);
}

.producto img{
    width:100%;
    height:250px;
    object-fit:cover;
    max-width:100%;
    height:auto;
    display:block;
}

.producto h3{
    padding:20px;
    text-align:center;
}
.fondo-embutidos{
    height:300px;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("banners/embutidos-banner.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
}

.fondo-embutidos h1{
    font-size:60px;
    margin-bottom:10px;
}

.fondo-embutidos p{
    font-size:22px;
}
.fondo-quesos{
    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.35)
    ),
    url("banners/quesos-banner.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}

.fondo-quesos h1{
    font-size:60px;
    margin-bottom:15px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}

.fondo-quesos p{
    font-size:24px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}

.fondo-cremas{
    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.35)
    ),
    url("banners/cremas-banner.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}

.fondo-cremas h1{
    font-size:60px;
    margin-bottom:15px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}

.fondo-cremas p{
    font-size:24px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}
.fondo-mantequillas{
    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.35)
    ),
    url("banners/mantequillas-banner.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}
.fondo-mantequillas h1{
    font-size:60px;
    margin-bottom:15px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}

.fondo-mantequillas p{
    font-size:24px;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}
.producto{
    position:relative;
    overflow:hidden;
    height:320px;
}

.info{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(214,28,28,.95);

    color:white;

    opacity:0;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:15px;
    box-sizing:border-box;

    transition:0.3s;
}

.producto:hover .info{
    opacity:1;
}

.info h3{
    margin-bottom:15px;
}

.info p{
    font-size:18px;
    font-weight:500;
    line-height:1.5;
}
.nombre{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:80px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:white;

    font-size:24px;
    font-weight:bold;
    text-align:center;

    font-size: 24px;
    font-weight: bold;
    margin:0;

}
.hero-nosotros{
    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("nosotros-banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}

.hero-nosotros h1{
    font-size:70px;
}

.hero-nosotros p{
    font-size:24px;
}

.nosotros{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tarjeta{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.tarjeta h2{
    color:#d61c1c;
    margin-bottom:15px;
}
.estadisticas{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:50px auto;
    flex-wrap:wrap;
}

.stat{
    background:#d61c1c;
    color:white;
    padding:30px;
    border-radius:15px;
    width:220px;
    text-align:center;
}

.stat h3{
    font-size:40px;
}

.porque{
    text-align:center;
    padding:60px 20px;
}

.porque h2{
    color:#d61c1c;
    margin-bottom:40px;
}

.beneficios{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
}

.beneficio{
    background:white;
    width:280px;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.categorias{
    padding:30px 20px;
    text-align:center;
}

.categorias h2{
    color:#d61c1c;
    margin-bottom:20px;
}

.grid-categorias{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.categoria{
    text-decoration:none;
    color:black;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.categoria:hover{
    transform:translateY(-10px);
}

.categoria img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.categoria h3{
    padding:20px;
    font-size:24px;
}
.tarjeta{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.tarjeta:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
body{
    background:linear-gradient(to bottom,#f8f8f8,#ececec);
}
.cta{
    background:#d61c1c;
    color:white;
    text-align:center;
    padding:80px 20px;
    margin-top:60px;
    padding-bottom:120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-contacto{
    background:white;
    color:#d61c1c;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    bottom:100px;
    position: static;
    margin-bottom: 10px;
    z-index: 2;
}
.marcas{
    padding:60px 20px;
    text-align:center;
}

.marcas h2{
    color:#d61c1c;
    margin-bottom:30px;
}

.logos{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.logos div{
    background:white;
    padding:20px 35px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    font-weight:bold;
    font-size:20px;
    transition:.3s;
}

.logos div:hover{
    transform:translateY(-5px);
}
.nosotros-hero {
  background-image: url("banners/nosotros-banner.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.hero-text-nosotros {
    margin-left:80px;
    max-width:500px;
    font-size: 50px;
    text-align: center;
    color:black;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.dist-pro {
    font-family: "Arial", sans-serif;
    color: #0f172a;
    background: #f6f8fc;
}

/* HERO */
.dist-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    padding: 70px 60px;
    align-items: center;
}

.tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #eb2525;
    font-weight: bold;
    margin-bottom: 10px;
}

.dist-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0;
}

.dist-hero p {
    color: #475569;
    max-width: 500px;
}

/* STATS */
.dist-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.dist-stats div {
    background: white;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    flex: 1;
}

.dist-stats strong {
    display: block;
    font-size: 18px;
    color: #eb2525;
}

/* MAPA */
.dist-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* COBERTURA */
.dist-cobertura {
    padding: 60px;
    text-align: center;
}

.zonas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.zona {
    background: white;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    font-size: 14px;
}

/* CLIENTES */
.dist-clientes {
    padding: 60px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* CTA */
.dist-cta {
    margin: 60px;
    background: linear-gradient(135deg, #7a0b0b, #eb2525);
    color: white;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    padding: 14px 22px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width:768px){

header{
    flex-direction:column;
    padding:20px;
}

nav{
    display:flex;
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

nav a{
    margin:5px;
    font-size:15px;

}

.hero{
    height:auto;
    padding:80px 20px;
    justify-content:center;
}

.hero h1{
    font-size: 55px;
}

.hero-text{
    margin:0;
    text-align:center;
}

.nosotros-hero {
    height:auto;
    padding:80px 20px;
    justify-content:center;
}

.nosotros-hero h1{
    font-size: 42px;
    line-height: 1.2;
    justify-content:center;
}

.estadisticas{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.stat{
    width:90%;
    max-width:320px;
    margin:0 auto;
}

.buttons{
    flex-direction:column;
    align-items:center;
}

.benefits{
    grid-template-columns:1fr 1fr;
    padding:30px;
}

.cards{
    grid-template-columns:1fr;
}

.catalogo{
    grid-template-columns:1fr;
    padding:20px;
}

.grid-categorias{
    grid-template-columns:1fr;
}

.beneficios{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

beneficio{
    width:90%;
    max-width:320px;
    margin:0 auto;
}

.dist-hero{
    grid-template-columns:1fr;
    padding:40px 20px;
}

.dist-stats{
    flex-direction:column;
}

.dist-cta{
    flex-direction:column;
    gap:20px;
    text-align:center;
    margin:20px;
}

.producto img{
    height:180px;
    object-fit: contain;
    background: #fff;
}
}
