*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Paleta Suzuki + neutros (sin reglas de tipografía) */
:root {
  --suzuki-red:    #E20A17;
  --suzuki-red-dim:#B50812;
  --suzuki-blue:   #003399;
  --suzuki-blue-mid:#002266;
  --accent:        #E20A17;
  --accent-glow:   rgba(226,10,23,0.12);
  --white:         #FFFFFF;
  --bg:            #FFFFFF;
  --section-muted: #F4F4F4;
  --surface:       #FFFFFF;
  --border:        #E5E5E5;
  --gray:          #555555;
  --text:          #000000;
  --text-muted:    #444444;
  --input-bg:      #FFFFFF;
  --nav-bg:        rgba(255,255,255,0.96);
  --footer-bg:     #000000;
  --footer-muted:  #CCCCCC;
  --nav-text:      #000000;
  --nav-muted:     #333333;
}

html.dark {
  --bg:            #0D0D0D;
  --section-muted: #1A1A1A;
  --surface:       #141414;
  --border:        #2A2A2A;
  --gray:          #A8A8A8;
  --text:          #F4F4F4;
  --text-muted:    #B0B0B0;
  --input-bg:      #1A1A1A;
  --nav-bg:        rgba(10,10,10,0.96);
  --nav-text:      #FFFFFF;
  --nav-muted:     #CCCCCC;
  --footer-bg:     #000000;
  --footer-muted:  #B8B8B8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

.info-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 7px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.info-bar a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.info-bar a:hover { color: var(--accent); }
.info-bar-left, .info-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.info-bar-line { display: inline-flex; align-items: center; gap: 6px; }
.info-ico { width: 13px; height: 13px; flex-shrink: 0; color: var(--text-muted); opacity: 0.75; }
.info-bar-sep { opacity: 0.25; }
.open-pill {
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.65rem;
  letter-spacing: 0.1em; padding: 2px 9px;
  text-transform: uppercase;
}
@media (max-width: 760px) { .info-bar { display: none; } }

nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 13px 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-weight: 900; font-size: 1.15rem;
  letter-spacing: 0.13em; color: var(--nav-text);
  text-transform: uppercase;
}
.nav-logo em {
  font-style: normal; color: var(--suzuki-blue);
  font-weight: 400; font-size: 0.75em;
  letter-spacing: 0.07em; margin-left: 5px;
}
.nav-divider { width: 1px; height: 18px; background: var(--border); }
.nav-sub {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--nav-muted);
  text-transform: uppercase;
}
.nav-badge {
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--accent);
  border: 1px solid rgba(226,10,23,0.45);
  padding: 3px 10px; text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer; padding: 5px 11px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
html.dark .theme-toggle { border-color: #333; color: #AAA; }
.theme-toggle svg { width: 13px; height: 13px; }
.icon-sun  { display: none; align-items: center; gap: 6px; }
.icon-moon { display: flex; align-items: center; gap: 6px; }
html.dark .icon-sun  { display: flex; }
html.dark .icon-moon { display: none; }

@media (max-width: 760px) {
  nav { padding: 12px 20px; }
  .nav-sub, .nav-divider, .nav-badge { display: none; }
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1920 / 1277;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-tag {
  position: absolute; bottom: 28px; left: 48px;
  z-index: 2;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.24em;
  color: rgba(255,255,255,0.95); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.hero-tag::before {
  content: ''; display: inline-block; width: 22px; height: 1.5px;
  background: var(--accent);
}
@media (max-width: 760px) { .hero-tag { left: 20px; bottom: 18px; } }

.intro-strip {
  background: var(--white);
  padding: 44px 48px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  border-bottom: 3px solid var(--accent);
  transition: background 0.3s;
}
html.dark .intro-strip { background: var(--surface); border-bottom-color: var(--accent); }

.intro-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 0.93;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.01em;
}
.intro-headline em { font-style: italic; color: var(--suzuki-blue); }

.intro-body {
  max-width: 400px; font-size: 0.93rem;
  line-height: 1.72; color: var(--text-muted); font-weight: 400;
}
.intro-body strong { color: var(--text); font-weight: 600; }

@media (max-width: 760px) { .intro-strip { padding: 36px 20px; } }

.services-bar {
  background: var(--section-muted);
  padding: 0 48px;
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}
.service-item {
  display: flex; align-items: center; gap: 9px;
  padding: 15px 26px; white-space: nowrap;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--text); text-transform: uppercase;
  border-right: 1px solid var(--border);
}
.service-item:last-child { border-right: none; }
@media (max-width: 760px) { .services-bar { padding: 0 20px; } .service-item { padding: 13px 15px; font-size: 0.72rem; } }

.contact-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 48px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  transition: background 0.3s, border-color 0.3s;
}
.contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.81rem; color: var(--text-muted); font-weight: 500;
}
.contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); }
.contact-item svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }
.contact-open {
  margin-left: auto;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 6px;
}
.contact-open::before {
  content: ''; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%; display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,10,23,0.35); }
  50% { box-shadow: 0 0 0 5px rgba(226,10,23,0); }
}
@media (max-width: 760px) { .contact-strip { padding: 15px 20px; gap: 14px; } .contact-open { margin-left: 0; } }

.form-section {
  background: var(--section-muted);
  padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  transition: background 0.3s;
}
@media (max-width: 900px) {
  .form-section { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .form-grid { grid-template-columns: 1fr !important; }
  .field.full, .submit-btn, .form-note, #success-msg { grid-column: 1 !important; }
}

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 18px; height: 1.5px; background: var(--accent); display: inline-block; }

.form-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  line-height: 0.97; text-transform: uppercase;
  color: var(--text); margin-bottom: 18px; transition: color 0.3s;
}
.form-title span { color: var(--suzuki-blue); }
html.dark .form-title span { color: var(--accent); }

.form-desc { font-size: 0.9rem; line-height: 1.72; color: var(--text-muted); margin-bottom: 30px; }

.benefits { display: flex; flex-direction: column; gap: 13px; }
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; font-weight: 500; color: var(--text); transition: color 0.3s;
}
.benefit-dot {
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-right {
  background: var(--surface); padding: 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  border-top: 3px solid var(--accent);
  transition: background 0.3s, box-shadow 0.3s;
}
html.dark .form-right { box-shadow: 0 2px 40px rgba(0,0,0,0.32); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }

label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}

input, select, textarea {
  font-size: 0.93rem;
  padding: 11px 13px; border: 1.5px solid var(--border);
  background: var(--input-bg); color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
  width: 100%; -webkit-appearance: none; border-radius: 0;
}
input::placeholder, textarea::placeholder { color: var(--gray); opacity: 0.5; }
input:focus, select:focus, textarea:focus {
  border-color: var(--suzuki-blue); box-shadow: 0 0 0 3px var(--accent-glow);
}
html.dark input:focus, html.dark select:focus, html.dark textarea:focus {
  border-color: var(--accent);
}
textarea { resize: vertical; min-height: 108px; }
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}

.submit-btn {
  grid-column: 1 / -1; margin-top: 6px;
  background: var(--accent); color: #FFF; border: none;
  padding: 15px 28px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%; position: relative; overflow: hidden;
}
.submit-btn::after {
  content: '→'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 1rem; opacity: 0.65;
}
.submit-btn:hover {
  background: var(--suzuki-red-dim); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(226,10,23,0.28);
}
.submit-btn:active { transform: translateY(0); }

.form-note { grid-column: 1 / -1; font-size: 0.73rem; color: var(--gray); text-align: center; margin-top: 2px; }

.netlify-form-detect { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

#success-msg {
  display: none; grid-column: 1 / -1;
  background: rgba(226,10,23,0.06);
  border-left: 3px solid var(--accent);
  padding: 15px 18px; font-size: 0.88rem;
  color: var(--text); font-weight: 500;
}

footer {
  background: var(--footer-bg);
  padding: 54px 48px 28px;
  transition: background 0.3s;
}
html.dark footer { background: var(--footer-bg); }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px 24px; }
}

.footer-logo {
  font-weight: 900; font-size: 1.45rem;
  letter-spacing: 0.13em; color: #FFF;
  text-transform: uppercase; margin-bottom: 3px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--footer-muted); text-transform: uppercase;
  margin-bottom: 18px; font-weight: 600;
}
.footer-desc {
  font-size: 0.84rem; line-height: 1.7;
  color: rgba(255,255,255,0.43); font-weight: 300; max-width: 300px;
}
.footer-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.f-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid rgba(226,10,23,0.35);
  color: rgba(255,255,255,0.55);
}

.footer-col-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--footer-muted);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.f-link {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.5;
}
.f-link a { color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.f-link a:hover { color: #FFFFFF; }
.f-link svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.22); }
.footer-social { display: flex; align-items: center; gap: 16px; }
.s-link {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.s-link:hover { color: var(--accent); }
.s-link svg { width: 12px; height: 12px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.a1 { animation-delay: 0.05s; }
.a2 { animation-delay: 0.18s; }
.a3 { animation-delay: 0.32s; }
.a4 { animation-delay: 0.46s; }
