/* ===== AA Drago SRL — Home ===== */

:root {
  --bg: #131110;
  --bg-alt: #17130f;
  --bg-footer: #0f0d0c;
  --card: #1c1714;
  --card-soft: #1f1916;
  --border: #2f2823;
  --border-soft: #3a302b;
  --line: #221d1a;
  --text: #f5f1ec;
  --text-soft: #e5ddd5;
  --muted: #cabfb6;
  --muted-2: #b6aca3;
  --muted-3: #a89f97;
  --muted-4: #948b83;
  --muted-5: #8c8279;
  --muted-6: #7a6f67;
  --muted-7: #6a615a;
  --red: #e6362c;
  --red-hover: #ff463b;
  --red-dark: #b3261d;
  --green: #1c8a4a;
  --green-hover: #1fa055;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

@keyframes dragoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 54, 44, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(230, 54, 44, 0); }
}

@keyframes dragoRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 32px);
}

/* ===== NAV ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 17, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.ribbon {
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
}

.navbar {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 13px clamp(18px, 5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-badge {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0c0a09;
  border: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.brand-badge::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(230, 54, 44, 0.4);
}

.brand-badge .aa { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; font-size: 9px; letter-spacing: 1.5px; color: #fff; }
.brand-badge .drago { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 13.5px; letter-spacing: 0.5px; color: var(--red); }
.brand-badge .srl { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; font-size: 8px; letter-spacing: 3px; color: #fff; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.8px;
  color: #fff;
}

.brand-name span { color: var(--red); }

.brand-tag {
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--muted-4);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: #fff; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn-whatsapp:hover { background: #1ebe5d; }
.nav-links .btn-whatsapp,
.nav-mobile .btn-whatsapp { color: #fff !important; font-weight: 700 !important; }

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #1c1714;
  border: 1px solid var(--border-soft);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }

.social-footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-5);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.social-footer-link:hover { color: var(--red); }

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: dragoPulse 2s infinite;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: #1c1714;
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
}

.nav-toggle span:last-child { background: var(--red); }

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #14110f;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  padding: 10px 20px 18px;
  z-index: 60;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-of-type { border-bottom: none; }

.nav-mobile .btn-whatsapp {
  justify-content: center;
  font-size: 16px;
  padding: 14px;
  margin-top: 14px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== HERO ===== */

.hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 80px) clamp(20px, 5vw, 32px) clamp(48px, 7vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(230, 54, 44, 0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  animation: dragoRise 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #1c1714;
  margin-bottom: 26px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36d07a;
}

.hero-badge span:last-child {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 520px;
  margin: 26px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(230, 54, 44, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover { border-color: #6a5b53; background: #1c1714; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
}

.hero-stats .stat-num span { color: var(--red); }

.hero-stats .stat-label {
  font-size: 13px;
  color: var(--muted-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stats .divider {
  width: 1px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  animation: dragoRise 0.9s ease both;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}

.hero-image .img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(230, 54, 44, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(19, 17, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #36302b;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card .badge {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}

.hero-card .title { font-weight: 700; font-size: 15px; color: #fff; }
.hero-card .subtitle { font-size: 13px; color: var(--muted-4); }

/* ===== TRUST STRIP ===== */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.trust-strip .container {
  padding: 22px clamp(20px, 5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-strip .label {
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-6);
  font-weight: 600;
}

.trust-strip span:not(.label) {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--muted-5);
  font-size: 16px;
}

/* ===== SECTION HEADINGS ===== */

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0;
  color: #fff;
}

.section-lead {
  font-size: 17px;
  color: var(--muted-3);
  line-height: 1.6;
  margin: 18px auto 0;
}

.section-center { text-align: center; margin-bottom: 50px; }

/* ===== NOSOTROS ===== */

.nosotros {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
}

.nosotros-visual { position: relative; }

.nosotros-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 5 / 4;
}

.nosotros-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.nosotros-badge {
  position: absolute;
  bottom: -26px;
  right: -10px;
  background: var(--red);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(230, 54, 44, 0.35);
}

.nosotros-badge .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
}

.nosotros-badge .label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.nosotros h2 { margin: 0 0 22px; }

.nosotros p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0 0 18px;
}

.nosotros p strong { color: var(--text); }

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.check-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.check-item .check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--card-soft);
  border: 1px solid var(--border-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.check-item span:last-child {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== SERVICIOS ===== */

.servicios {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.servicios .container { padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 32px); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.section-head .section-title { max-width: 620px; }

.link-arrow {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.link-arrow:hover { color: var(--red-hover); }

.services-grid,
.products-grid,
.branches-grid {
  display: grid;
  gap: 20px;
}

.services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.branches-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover { border-color: var(--red); transform: translateY(-4px); }

.service-card .num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: #221c18;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon.fill {
  background: var(--red);
}

.service-icon.outline {
  background: var(--card-soft);
  border: 1px solid var(--border-soft);
  color: var(--red);
  font-weight: 900;
  font-family: 'Archivo', sans-serif;
}

.service-icon .extinguisher-glyph {
  width: 18px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 5px;
}

.service-card h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 10px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-3);
  margin: 0;
}

/* ===== PRODUCTOS ===== */

.productos { max-width: 1280px; margin: 0 auto; padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 32px); }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover { border-color: #6a5b53; transform: translateY(-4px); }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}

.product-tag.fill { background: var(--red); color: #fff; }
.product-tag.outline { background: var(--card-soft); color: var(--red); border: 1px solid var(--border-soft); }

.product-body { padding: 20px; }

.product-body h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
  color: #fff;
}

.product-body p {
  font-size: 14px;
  color: var(--muted-3);
  margin: 0;
  line-height: 1.5;
}

.product-cta {
  background: linear-gradient(160deg, var(--red), var(--red-dark));
  border: 1px solid var(--red);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  transition: transform 0.2s ease;
}

.product-cta:hover { transform: translateY(-4px); }

.product-cta h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 21px;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.1;
}

.product-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 18px;
  line-height: 1.5;
}

.product-cta .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  align-self: flex-start;
  transition: background 0.15s ease, color 0.15s ease;
}

.product-cta .link-cta:hover { background: var(--bg); color: #fff; }

/* ===== CERTIFICACIONES ===== */

.certificaciones {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.certificaciones .container {
  padding: clamp(56px, 9vw, 90px) clamp(20px, 5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

.certificaciones h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  margin: 0 0 20px;
}

.certificaciones p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0 0 16px;
}

.certificaciones p:last-child { margin: 0; }
.certificaciones p strong { color: var(--text); }

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 10px;
}

.cert-tile .cert-main {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: var(--red);
  font-size: 20px;
  font-style: italic;
}

.cert-tile .cert-sub {
  font-size: 11px;
  color: var(--muted-7);
  letter-spacing: 1px;
}

.cert-tile .cert-label {
  font-size: 11px;
  color: var(--muted-7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cert-tile--img { padding: 20px; }
.cert-tile--img img { width: 100%; height: 100%; object-fit: contain; display: block; }

.cert-norms-wrap { padding-top: 0 !important; }
.cert-norms-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 24px;
}

.cert-grid--norms {
  grid-template-columns: repeat(3, 1fr);
}

.cert-tile--norm {
  aspect-ratio: auto;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
  padding: 18px;
}

.cert-tile--norm .cert-main {
  font-size: 16px;
  font-style: normal;
}

.cert-tile--norm .cert-sub {
  letter-spacing: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-2);
}

.cert-logos-wrap { padding-top: 0 !important; }
.cert-grid--logos { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
  .cert-grid--norms { grid-template-columns: 1fr 1fr; }
  .cert-grid--logos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cert-grid--norms { grid-template-columns: 1fr; }
}

/* ===== SUCURSALES ===== */

.sucursales { max-width: 1280px; margin: 0 auto; padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 32px); }

.branch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.branch-card:hover { border-color: var(--red); }

.branch-map-wrap { position: relative; }

.branch-map {
  width: 100%;
  height: 152px;
  border: 0;
  display: block;
  background: var(--card-soft);
}

.branch-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
}

.branch-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.branch-info {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.branch-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-icon.main { background: var(--red); color: #fff; }
.branch-icon.alt { background: var(--card-soft); border: 1px solid var(--border-soft); color: var(--red); }

.branch-info h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0 0 4px;
}

.branch-info p {
  font-size: 13.5px;
  color: var(--muted-3);
  margin: 0;
  line-height: 1.45;
}

.branch-actions {
  display: flex;
  gap: 9px;
  margin-top: auto;
}

.branch-actions .btn-route {
  flex: 1;
  text-align: center;
  background: #231d19;
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 10px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.branch-actions .btn-route:hover { border-color: #6a5b53; color: #fff; }

.branch-actions .btn-wa {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 17px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.branch-actions .btn-wa:hover { background: var(--green-hover); }

/* ===== CONTACTO ===== */

.contacto {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 56px);
}

.contacto h2 { margin: 0 0 18px; }

.contacto-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0 0 34px;
  max-width: 440px;
}

.wa-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 26px;
  transition: background 0.15s ease;
}

.wa-banner:hover { background: var(--green-hover); }

.wa-banner .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.wa-banner .title { display: block; font-weight: 800; font-size: 17px; }
.wa-banner .subtitle { display: block; font-size: 14px; opacity: 0.85; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row .label {
  font-size: 13px;
  color: var(--muted-6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row .value {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

/* ===== FORM ===== */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.form-card h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin: 0 0 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field { margin-bottom: 14px; }
.field:last-of-type { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 13px;
  color: var(--muted-3);
  margin-bottom: 7px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid #36302b;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus { border-color: var(--red); }

.field textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Archivo', sans-serif;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-submit:hover { background: var(--red-hover); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  gap: 18px;
}

.form-success .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
}

.form-success h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin: 0;
}

.form-success p {
  font-size: 16px;
  color: var(--muted-3);
  margin: 0;
  max-width: 320px;
  line-height: 1.6;
}

.hidden { display: none !important; }

/* ===== FOOTER ===== */

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line);
}

.site-footer .container { padding: 56px 32px 30px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand { max-width: 320px; }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-row .brand-badge {
  width: 48px;
  height: 48px;
}

.footer-brand-row .brand-badge .aa { font-size: 7.5px; letter-spacing: 1px; }
.footer-brand-row .brand-badge .drago { font-size: 11.5px; }
.footer-brand-row .brand-badge .srl { font-size: 7px; letter-spacing: 2.5px; }

.footer-brand-row .brand-name { font-size: 18px; letter-spacing: 1px; }

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted-5);
  margin: 0;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--muted-5);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--red); }

.footer-col span { color: var(--muted-5); font-size: 14.5px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.footer-bottom span { font-size: 13px; color: var(--muted-7); }

/* ===== CAROUSEL ===== */

.carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}

.carousel-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  background: var(--card);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img,
.carousel-slide .img-slot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 24px;
}

.carousel-slide .img-slot {
  padding: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(19, 17, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.carousel-arrow:hover { background: var(--red); border-color: var(--red); }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }

.carousel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 7px;
  z-index: 3;
  transition: opacity 0.2s ease;
}

.carousel-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.carousel-counter {
  font-size: 13px;
  color: var(--muted-6);
  letter-spacing: 1px;
  font-weight: 600;
}

.carousel-counter span { color: var(--red); font-weight: 800; }

.carousel-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.5px;
  transition: opacity 0.2s ease;
}

.carousel-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0;
  transition: opacity 0.2s ease;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.carousel-cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.carousel-cta-box p {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.carousel-fade { opacity: 0; }

@media (max-width: 820px) {
  .carousel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .carousel-visual { aspect-ratio: 4 / 3; }
}

/* ===== IMAGE PLACEHOLDERS ===== */

.img-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, #1f1916 0 14px, #181310 14px 28px);
  color: var(--muted-6);
  font-size: 13px;
  line-height: 1.5;
  padding: 16px;
  border: 1px dashed var(--border-soft);
}
