/* base */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Arial, Helvetica, sans-serif;color:#1f2937;background:#ffffff}
img{display:block;max-width:100%}
.container{width:min(1100px,92%);margin:0 auto}

/* hero */
.hero{background:linear-gradient(180deg,#f4fbf7 0%, #ffffff 70%);padding:20px 0 10px}
.header-top{display:flex;flex-direction:column;gap:8px}
.top-row{display:flex;justify-content:space-between;align-items:center}
.logo{width:120px;height:auto;object-fit:contain}
.badge{display:inline-block;padding:6px 12px;background:#e7f7ef;color:#0b5d3b;border-radius:999px;font-weight:700;font-size:14px}
.hero h1{margin:6px 0 4px;color:#0b5d3b}
.progress-bar{width:100%;background:#e5e7eb;border-radius:6px;height:12px;margin:6px 0}
.progress-bar .fill{width:100%;height:100%;background:#0b5d3b;border-radius:6px}
.tagline{margin:0 0 8px;color:#4b5563}


/* imagen principal centrada 1000x1000 */
.hero-gallery{
  width:1000px;
  margin:20px auto;
}
.hero-frame{
  width:1000px;
  height:1000px;
  border-radius:12px;
  overflow:hidden;
  background:#f3f4f6;
  margin:0 auto 12px;
}
.hero-frame img{
  width:100%;
  height:100%;
  object-fit:cover; /* recorta sin deformar */
  display:block;
}

/* mini galeria */
.thumbs{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.thumb{
  padding:0;
  border:2px solid #cfe9db;        /* verde muy suave */
  border-radius:8px;
  background:#fff;
  width:120px;
  height:120px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .15s, border-color .15s, box-shadow .15s;
}
.thumb:hover{
  transform:scale(1.03);
  border-color:#0b5d3b;
  box-shadow:0 6px 14px rgba(11,93,59,.15);
}
.thumb.is-active{
  border-color:#0b5d3b;            /* marco activo */
  box-shadow:0 6px 14px rgba(11,93,59,.18);
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* opcional: responsivo en pantallas chicas */
@media (max-width: 1100px){
  .hero-gallery,
  .hero-frame{ width:100%; }
  .hero-frame{ height:auto; aspect-ratio:1/1; } /* mantiene cuadrado */
  .hero-frame img{ height:100%; }
}


/* slider */
.slider{
  position:relative;
  overflow:hidden;
  margin:20px auto;     /* auto lo centra horizontalmente */
  border-radius:12px;
  width:1000px;         /* ancho fijo */
  height:1000px;        /* alto fijo */
}

.slides{
  display:flex;
  transition:transform .5s ease;
}

.slides img{
  width:1000px;
  height:1000px;
  object-fit:cover;     /* recorta para que no se deformen */
}



/* secciones */
.section{padding:28px 0}
.section h2{margin:0 0 10px;color:#0b5d3b}
.hint{font-size:14px;color:#6b7280}
.features{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.features{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.features li{
  display:flex;
  flex-direction:column;       /* icono arriba, texto abajo */
  align-items:center;
  text-align:center;
  gap:10px;
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  box-sizing:border-box;
  min-height:220px;            /* asegura que todas tengan altura pareja */
}

.features li img{
  max-width:60px;              /* controla tamaño del icono */
  max-height:60px;
  object-fit:contain;
  flex-shrink:0;
}

.features h3{
  margin:0;
  font-size:1.1rem;
  color:#0b5d3b;
}

.features p{
  margin:0;
  font-size:0.9rem;
  color:#374151;
  line-height:1.5;
}


/* marcas */
.marcas .brand-row{display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:center;padding:8px 0}
.marcas .brand-row img{height:100px;object-fit:contain;filter:saturate(.95);opacity:.95}
.marcas .brand-row img:hover{opacity:1}

.brand-row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.brand-item{
  width:140px;              /* ancho fijo de cada marco */
  text-align:center;
  border:2px solid #0b5d3b; /* marco verde */
  border-radius:8px;
  padding:10px;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
  transition:transform .2s;
  display:flex; 
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
}
.brand-item:hover{
  transform:scale(1.05);
}

.brand-item img{
  max-width:100%;
  max-height:80px;          /* controla la altura del logo */
  object-fit:contain;
  margin-bottom:8px;
  flex:1;
  display:flex; 
  align-items:center;
  justify-content:center;
}

.brand-item figcaption{
  font-size:14px;
  color:#0b5d3b;
  font-weight:600;
  text-transform:capitalize;
  border-top:1px solid #e5e7eb;
  padding-top:4px;
}



/* section de limite de cobertura */
.env-limite { padding-top: 10px; padding-bottom: 10px; }

/* tarjeta interna para que se vea igual al cuadro de envios */
.limite-card{
  background:#fafafa;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:20px;
  box-sizing:border-box;
  /* sombra opcional, comenta si no la quieres */
  box-shadow:0 6px 14px rgba(0,0,0,.04);
}

.limite-card h3{
  margin:0 0 10px 0;
  font-size:1.2rem;
  color:#ae0406;
  display:flex; align-items:center; gap:6px;
}

.limite-list{
  list-style:none;
  padding:0; margin:8px 0 12px 0;
  display:flex; flex-wrap:wrap; gap:14px 24px;
}
.limite-list li{
  color:#374151;
  flex:1 1 260px;   /* columnas fluidas como el cuadro anterior */
}

.limite-nota{
  margin:6px 0 0 0;
  font-size:.95rem;
  color:#6b7280;
}

/* responsive fino (opcional) */
@media (max-width: 640px){
  .limite-list{ gap:8px 12px; }
  .limite-list li{ flex:1 1 100%; }
}


/* CTA grande centrada */
.cta-wrap{display:flex;flex-direction:column;align-items:center;gap:8px}
.btn-cta{display:inline-block;background:#ae0406;color:#fff;text-decoration:none;padding:16px 28px;border-radius:12px;font-weight:800;font-size:clamp(18px,2.6vw,22px);box-shadow:0 10px 18px rgba(174,4,6,.15);text-align:center}
.btn-cta:hover{filter:brightness(.95)}
.cta-note{font-size:14px;color:#6b7280;margin:0}

/* mapa */
.mapa-osm{width:100%;height:320px;border-radius:12px}
.mapa-fallback{font-size:14px;color:#6b7280;margin-top:8px}
.mapa-fallback a{color:#0b5d3b;text-decoration:none;font-weight:600}
.mapa-fallback a:hover{text-decoration:underline}

/* footer y cofepris */
footer{background:#f9fafb;border-top:1px solid #e5e7eb;padding:18px 0;color:#4b5563;font-size:14px}
footer a{color:#0b5d3b;text-decoration:none;font-weight:600}
footer a:hover{text-decoration:underline}
.legal{margin-top:12px;background:#ffffff;border:1px solid #e5e7eb;border-radius:10px;padding:12px 14px}
.legal-title{margin:0 0 6px 0;font-size:13px;color:#0b5d3b;text-transform:uppercase;letter-spacing:.3px}
.legal-list{margin:0;padding-left:18px;color:#6b7280;line-height:1.45}
.legal-list li{margin:4px 0}

.btn-cta{
  display:inline-block;
  background:#25D366;          /* verde whatsapp */
  color:#fff;
  font-weight:600;
  font-size:18px;
  padding:14px 28px;
  border-radius:50px;          /* redondeado tipo pastilla */
  text-decoration:none;
  text-align:center;
  transition:background .3s, transform .2s;
  box-shadow:0 4px 10px rgba(37,211,102,.3);
}
.btn-cta:hover{
  background:#1ebe5b;          /* verde mas oscuro al pasar el mouse */
  transform:scale(1.03);       /* pequeño zoom */
}
.btn-cta:active{
  transform:scale(0.98);       /* efecto click */
}

/* Boton flotante WhatsApp */
.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  background:#25D366;        /* verde whatsapp */
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(37,211,102,.35);
  z-index:1000;
  transition:transform .2s, background .3s;
}
.wa-float:hover{
  background:#1ebe5b;
  transform:scale(1.05);
}

.rutas{
  list-style:none;   /* quita las viñetas */
  padding:0;         /* elimina sangría */
  margin:12px 0 0 0;
}
.rutas li{
  margin:6px 0;
  font-size:15px;
}

/* ENVÍOS A DOMICILIO */
.envios{ background: radial-gradient(circle at 20% 10%, #f2fbf6 0%, #ffffff 60%); }
.env-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.env-info h2{ margin:0 0 8px; color:#0b5d3b; }

.env-badge{
  display:inline-block;
  background:#ae0406;      /* rojo suave */
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-weight:700;
  letter-spacing:.2px;
}

.env-list{ list-style:none; margin:14px 0 0; padding:0; }
.env-list li{ margin:12px 0; }
.env-ico{ font-size:18px; margin-right:6px; }
.env-sub{ display:block; color:#4b5563; margin-left:26px; }

.env-datos{ list-style:none; padding:12px 0 0; margin:0; color:#374151; }
.env-datos li{ margin:6px 0; }

.env-cta{ margin-top:14px; }
.env-btn{ font-size:18px; padding:14px 24px; border-radius:12px; }

/* Mascota / ilustracion */
.env-figure{ text-align:center; }
.env-mascota{
  max-width:250px;     /* ajusta el tamano de tu fresa aqui */
  width:100%;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(11,93,59,.12));
}

.env-restricciones{
  width:100%;                 /* bloque abarca todo el ancho */
  margin-top:30px;
  padding:20px;
  border-top:2px solid #e5e7eb;
  border-bottom:2px solid #e5e7eb;
  background:#fafafa;
  box-sizing:border-box;
}
.env-restricciones h3{
  margin-top:0;
  font-size:1.2rem;
  color:#ae0406;
  display:flex;
  align-items:center;
  gap:6px;
}
.env-restricciones ul{
  list-style:none;
  padding:0;
  margin:10px 0 15px;
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
.env-restricciones li{
  margin:4px 0;
  color:#374151;
  flex:1 1 200px;   /* se acomodan en columnas si hay espacio */
}
.env-restricciones .nota{
  font-size:0.95rem;
  color:#6b7280;
  margin-top:6px;
}


/* responsive */
@media (max-width: 900px){
  .env-grid{ grid-template-columns: 1fr; }
  .env-figure{ order:-1; } /* imagen arriba en movil */
  .env-mascota{ max-width:280px; }
}



/* Boton flotante WhatsApp */
.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  background:#25D366;        /* verde whatsapp */
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(37,211,102,.35);
  z-index:1000;
  transition:transform .2s, background .3s;
}
.wa-float:hover{
  background:#1ebe5b;
  transform:scale(1.05);
}

