/* styles.css - Sistemas de Ordeño Landing Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fbfc;
  color: #1a2e3f;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a{
    text-decoration: none;
    color: white;
}

/* HEADER */
.header {
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(0, 40, 60, 0.08);
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  background: #0b3b4f;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(11, 59, 79, 0.2);
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: #0b3b4f;
}

.logo-text span {
  font-weight: 400;
  color: #4f7a8c;
  font-size: 1rem;
  margin-left: 6px;
}

.brands {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f0f4f7;
  padding: 6px 18px 6px 14px;
  border-radius: 60px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.brand-flaco {
  color: #c4452b;
}

.brand-euromilk {
  color: #1c6e8c;
}

.brand-divider {
  color: #b0c4cf;
  font-weight: 300;
}

.cta-top {
  background: #0b3b4f;
  color: white;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: 0.2s;
  cursor: default;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 8px rgba(11, 59, 79, 0.15);
}

.cta-top i {
  margin-right: 8px;
}

.contenedor-principal {
  display: flex;
  flex-direction: column; /* Alinea los elementos en vertical */
  align-items: center;    /* Centra los elementos horizontalmente */
  text-align: center;     /* Centra el texto por dentro de cada elemento */
  max-width: 800px;       /* Limita el ancho para que no se estire demasiado */
  margin: 0 auto;         /* Centra el contenedor entero en la pantalla */
  padding: 20px;
}

.tag {
  background-color: #eef4f8;
  color: #1a4f70;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  color: #112233;
  margin-bottom: 15px;
}

.resaltado {
  color: #cc4422; /* El color naranja/rojo de tu diseño */
}

.descripcion {
  font-size: 1.1rem;
  color: #556677;
  max-width: 600px;       /* Evita que el párrafo sea demasiado ancho */
  margin-bottom: 25px;    /* Espacio antes del botón */
  line-height: 1.5;
}

/* Estilos para el botón */
.boton-catalogo {
  display: inline-block;
  background-color: #cc4422; /* Puedes usar el mismo color de acento */
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.boton-catalogo:hover {
  background-color: #aa3311; /* Efecto al pasar el cursor */
}

/* HERO */
.hero {
  padding: 60px 0 48px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #0b2a38;
  margin-bottom: 20px;
}

.hero-content h1 i {
  color: #c4452b;
  font-style: normal;
}

.hero-content p {
  font-size: 1.2rem;
  color: #2d4b5c;
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 12px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 800;
  font-size: 1.8rem;
  color: #0b3b4f;
}

.stat-label {
  font-size: 0.9rem;
  color: #4b6f82;
  letter-spacing: 0.3px;
}

.hero-image {
  background: #e4edf2;
  border-radius: 32px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 40px -12px rgba(0, 40, 60, 0.2);
  background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.6) 0%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(2px);
}

.hero-image-placeholder {
  background: #d3e2ea;
  border-radius: 24px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120" width="200" height="120"><circle cx="60" cy="50" r="18" fill="%23b3cfdf" /><circle cx="130" cy="40" r="20" fill="%23a0c0d4" /><rect x="40" y="70" width="120" height="20" rx="10" fill="%2387b0c7" /><rect x="60" y="90" width="80" height="14" rx="7" fill="%236f9bb5" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 180px auto;
}

.hero-image-placeholder p {
  margin-top: 100px;
  font-weight: 600;
  color: #1a4155;
  background: rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  font-size: 0.95rem;
}

/* BADGE */
.badge-fab {
  display: inline-block;
  background: #e9f0f5;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #1f5770;
  margin-bottom: 16px;
}

/* FABRICANTES */
.section-fabricantes {
  padding: 60px 0 40px;
  background: white;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.feature-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b2a38;
}

.feature-block p {
  color: #2d4b5c;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #1a3f52;
}

.feature-list i {
  color: #c4452b;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.card-marcas {
  background: #f2f6f9;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.02);
  border: 1px solid rgba(255,255,255,0.7);
}

.card-marcas h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.marca-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.marca-item:last-child {
  border-bottom: none;
}

.marca-nombre {
  font-weight: 800;
  font-size: 1.3rem;
  min-width: 100px;
}

.marca-nombre.flaco {
  color: #c4452b;
}

.marca-nombre.euromilk {
  color: #1c6e8c;
}

.marca-desc {
  color: #1f4b60;
  font-weight: 500;
}

.marca-desc small {
  font-weight: 400;
  color: #4e7488;
  display: block;
  font-size: 0.85rem;
  margin-top: 2px;
}

 

.btn-solucion {
  background: white;
  border: 1px solid #bed5e2;
  border-radius: 60px;
  padding: 12px 28px;
  font-weight: 600;
  color: #0b3b4f;
  transition: 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: default;
  margin-top: 8px;
}

.btn-solucion i {
  color: #c4452b;
}
.a.btn{
width: 25%;
height: 25%;
}
/* SOLUCIONES */
.section-soluciones {
  background: #f2f7fa;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0b2a38;
}

.section-title p {
  color: #2d5b70;
  max-width: 600px;
  margin: 8px auto 0;
}

.cards-soluciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-solucion {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(0, 40, 60, 0.04);
  border: 1px solid rgba(255,255,255,0.5);
  transition: 0.2s;
}

.card-solucion i {
  font-size: 2.2rem;
  color: #0b3b4f;
  background: #eaf1f6;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 18px;
}

.card-solucion h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-solucion p {
  color: #2d4b5c;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tag-medida {
  display: inline-block;
  background: #0b3b4f10;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #0b3b4f;
  margin-top: 14px;
}

/* FOOTER */
.footer {
  background: #0b2a38;
  color: #cfdfe8;
  padding: 40px 0 24px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo i {
  color: #d68b7a;
}

.footer small {
  color: #82a6b9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-2col {
    grid-template-columns: 1fr;
  }
  .cards-soluciones {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .logo-area {
    justify-content: center;
  }
  .brands {
    justify-content: center;
    padding: 6px 14px;
  }
  .cta-top {
    text-align: center;
  }
  .cards-soluciones {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .marca-item {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }
  .marca-nombre {
    min-width: auto;
  }
}