/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --vm-blue: #0b3c6d;
  --vm-red: #b30000;
  --text: #222;
  --muted: #444;
  --line: #eaeaea;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================= HEADER ================= */

.header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 28px; /* MÁS AIRE ARRIBA */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  width: 230px; /* LOGO MÁS GRANDE */
  height: auto;
}

.menu {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}

.menu a {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-icons {
  display: flex;
  gap: 10px;
}

.header-icons img {
  width: 32px;
  height: 32px;
}

/* ================= SECTIONS ================= */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 20px; /* MISMO AIRE ENTRE TODAS */
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* TEXTO IZQ / IMAGEN DER — SIEMPRE */
.section {
  flex-direction: row;
}

/* CONTENIDO */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-top {
  flex: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HERO — MÁS AIRE (CORRECCIÓN FINAL) */
.hero .content-top {
  padding-top: 32px;
}

.media-img,
.hero-img {
  width: 52%;
  border-radius: 6px;
}

/* TITULOS */
h1,
h2 {
  line-height: 1.1;
  margin-bottom: 14px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 40px;
}

.subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 18px;
}

.red {
  color: var(--vm-red);
}

/* CTA */
.cta-wrapper {
  margin: 22px 0;
}

.cta {
  display: inline-flex;
  padding: 14px 22px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--vm-blue);
  color: #fff;
  transition: background 0.25s ease;
}

.cta:hover {
  background: var(--vm-red);
}

/* PIE DE SECCIÓN */
.section-foot {
  width: 100%;
  margin-top: 46px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--muted);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--line);
  width: 86%;
  margin: 0 auto;
}

/* ================= ATENCIÓN ================= */

.attention {
  justify-content: center;
  padding: 64px 20px;
}

.attention-img {
  width: min(900px, 85%);
  border-radius: 6px;
}

/* ================= FAQ ================= */

.faqs {
  flex-direction: column;
  gap: 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.faq-item strong {
  display: block;
  font-weight: 800;
}

.faq-item span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  height: 72px;
  width: auto;
}

/* CONTACTOS FOOTER */
.footer-contact {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-contact span {
  display: block;
  margin-top: 6px;
}

.footer-copy {
  margin-top: 24px;
  text-align: center;
  font-weight: 800;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 18px;
    padding: 28px 20px;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .section {
    flex-direction: column;
    padding: 72px 20px;
    gap: 40px;
  }

  .media-img,
  .hero-img {
    width: 100%;
    order: -1;
  }

  .content-top {
    min-height: auto;
  }

  .section-foot {
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-contact span {
    margin-top: 8px;
  }

  .attention-img {
    width: 92%;
  }
}
/* ===== AJUSTE FINAL FOOTER – HORARIO COMPACTO ===== */

.footer-hours{
  text-align: center;
}

.footer-hours strong,
.footer-hours span{
  display: block;
  font-weight: 800; /* todo en negrita */
}

/* aire solo debajo de "HORARIO" */
.footer-hours strong{
  margin-bottom: 8px;
}

/* días y horas juntos, sin aire extra */
.footer-hours span{
  margin-bottom: 0;
}

/* ICONOS: más chicos y horizontales */
.footer-icons{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer-icons img{
  width: 26px;
  height: 26px;
}
/* ===== AJUSTES FINALES DE CIERRE ===== */

/* ---------- HEADER LOGO ---------- */
.logo {
  width: 230px; /* mismo peso visual que footer */
}

/* ---------- FOOTER TEXTO Y COPY ---------- */
.footer-copy {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.footer-copy::after {
  content: " · ORGULLOSAMENTE ARGENTINOS";
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
  font-size: 13px;
}

/* ---------- FOOTER HORARIO (SIN AIRE INTERNO) ---------- */
.footer-hours strong,
.footer-hours span {
  display: block;
  font-weight: 800;
  margin: 0; /* elimina aire entre días y horas */
}

/* ---------- FOOTER ICONOS (MÁS GRANDES) ---------- */
.footer-icons img {
  width: 32px;
  height: 32px;
}

/* ---------- ATENCIÓN: MENOS AIRE (NO MÁS CHICA) ---------- */
.attention {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* reduce aire entre atención y secciones vecinas */
.section + .attention,
.attention + .section {
  margin-top: -12px;
}

/* ---------- AJUSTE FINO ENTRE SECCIONES GRANDES ---------- */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
/* ===== MICRO AJUSTES FINALES ===== */

/* HEADER LOGO — un poco más grande */
.logo {
  width: 250px;
}

/* FOOTER COPY — todo igual de tamaño y peso */
.footer-copy {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer-copy::after {
  content: " · ORGULLOSAMENTE ARGENTINO";
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* FOOTER ICONOS — un poquito más grandes */
.footer-icons img {
  width: 36px;
  height: 36px;
}
/* FOOTER FRASE FINAL — FULL NEGRITA */
.footer-copy,
.footer-copy::after {
  font-weight: 800;
}
/* ================= AJUSTES FINALES ================= */

/* LOGO HEADER – un poco más grande */
.logo {
  width: 230px;
}

/* FOOTER TEXT – NEGRITA REAL (sin romper layout) */
.footer-text {
  font-weight: 800 !important;
}

.footer-text * {
  font-weight: 800 !important;
}
/* ===== AJUSTE FINAL DEFINITIVO ===== */

/* LOGO HEADER – un poco más grande (final) */
.header .logo {
  width: 250px;
  max-width: 250px;
}

/* FOOTER – NEGRITA FORZADA REAL */
.footer,
.footer *,
.footer-text,
.footer-text p,
.footer-text span,
.footer-text strong {
  font-weight: 800 !important;
}
/* ===== MICRO AJUSTES FINALES (CIERRE DEFINITIVO) ===== */

/* FOOTER TEXT: recuperar 4 renglones */
.footer-text {
  font-size: 8px;       /* ↓ un punto */
  line-height: 1.25;     /* compacta sin aplastar */
  max-width: 180px;      /* mantiene la cuadrícula */
}

/* AIRE ENTRE FOOTER Y FAQS */
.faqs {
  margin-bottom: 48px;
}

.footer {
  margin-top: 48px;
}
/* ===== FOOTER TEXT – AJUSTE FINAL FINAL ===== */
.footer-text {
  font-size: 8px;   /* ↓ un punto más */
  line-height: 1.22; /* mantiene respiración sin sumar renglón */
}
/* ===== FOOTER TEXT – FORZADO DEFINITIVO ===== */
.footer .footer-copy,
.footer .footer-text,
.footer .footer-copy strong {
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
/* ===== FOOTER ISO TEXT – FORZADO REAL ===== */
.footer-inner p {
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}
/* ===== MOBILE – ATENCIÓN AJUSTE FINO ===== */
@media (max-width: 768px) {
  .attention {
    padding: 48px 20px; /* mantiene aire sin aislarla */
    display: flex;
    justify-content: center;
  }

  .attention-img {
    width: 92%;      /* +2 rayitas reales */
    max-width: 420px;
    margin: 0 auto;  /* centrado real */
  }
}
/* ===== MOBILE – FOOTER BALANCE VISUAL ===== */
@media (max-width: 768px) {
  .footer-inner {
    align-items: center;
    justify-items: center;
  }

  .footer-logo {
    margin: 0 auto; /* quita peso visual a la izquierda */
  }

  .footer-icons {
    justify-content: center; /* deja de cargarse a la derecha */
  }
}
