/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:      #CC0000;
  --color-primary-dark: #A00000;
  --color-dark:         #1A1A1A;
  --color-gray:         #555555;
  --color-light-gray:   #F5F5F5;
  --color-white:        #FFFFFF;
  --color-muted:        #aaaaaa;
  --color-border:       #dddddd;
  --color-border-light: #eeeeee;
  --color-icon:         #888888;
  --color-label:        #999999;
  --font-main:          'Segoe UI', Arial, sans-serif;
  --container-width:    1200px;
  --transition:         0.3s ease;
  --transition-slow:    0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   UTILITY
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 3px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 40px;
}

/* =========================================
   SECTIONS (placeholders para ir llenando)
   ========================================= */
section {
  padding: 80px 0;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 500px;
  align-items: center;
  min-height: 380px;
}

/* Texto sobre imagen */
.hero__content {
  padding: 80px 0;
  max-width: 580px;
  color: var(--color-white);
}

.hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero__btn {
  font-size: 15px;
  padding: 13px 30px;
}

.hero__image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   HERO — RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .hero__inner {
    min-height: 600px;
  }

  .hero__content {
    padding: 48px 0;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    min-height: 700px;
  }

  .hero__content {
    padding-top: 36px;
  }
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background-color: var(--color-white);
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}

.services__header .section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.services__header .section-subtitle {
  margin-bottom: 0;
}

/* Grid 2 columnas */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Cada card */
.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: var(--color-light-gray);
  border-radius: 10px;
  padding: 40px 32px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__image {
  transition: transform var(--transition-slow);
}

.service-card__body {
  flex: 1;
  min-width: 0;
}

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* Imagen dentro de la card */
.service-card__image-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   SERVICES — RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .service-card__image-wrap {
    width: 160px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card__image-wrap {
    width: 180px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card__image-wrap {
    width: 100%;
    height: 200px;
  }
}

/* =========================================
   BRANDS
   ========================================= */
.brands {
  background-color: var(--color-white);
  border-top: 1px solid #eee;
}

.brands__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.brands__title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.brands__desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.brands__desc:last-child {
  margin-bottom: 0;
}

/* Columna logos */
.brands__logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brands__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.brands__row--center {
  grid-template-columns: 1fr;
  justify-items: center;
}

.brands__row--center .brand-logo {
  width: 50%;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.brand-logo:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--color-border);
}

.brand-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-logo--text {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  text-align: center;
  padding: 12px 10px;
}

.brands__row--center {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =========================================
   BRANDS — RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .brands__inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .brands__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brands__row--center .brand-logo {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    padding: 20px 16px;
  }

  .brand-logo img {
    max-height: 36px;
  }
}

/* =========================================
   LOCATION
   ========================================= */
.location {
  padding: 0;
  overflow: hidden;
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  min-height: 420px;
}

/* Columna izquierda — texto */
.location__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 28px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.location__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--color-gray);
}

.location__detail-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.location__detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location__detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  font-weight: 600;
}

.location__detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

.location__phone {
  display: block;
  transition: color var(--transition);
}

.location__phone:hover {
  color: var(--color-primary);
}

/* Columna derecha — mapa */
.location__map {
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* =========================================
   LOCATION — RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .location__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location__map,
  .location__map iframe {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .location__map,
  .location__map iframe {
    min-height: 240px;
    height: 240px;
  }
}

/* =========================================
   GALLERY / SLIDER
   ========================================= */
.gallery {
  background-color: var(--color-light-gray);
  padding-bottom: 60px;
}

.gallery__title {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 32px;
}

/* Slider wrapper */
.slider {
  position: relative;
  overflow: hidden;
  max-width: var(--container-width);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Track deslizante */
.slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Cada slide */
.slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Flechas */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background var(--transition), transform var(--transition);
}

.slider__arrow:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.slider__arrow--prev { left: 16px; }
.slider__arrow--next { right: 16px; }

/* Dots */
.slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* =========================================
   GALLERY — RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .slider__slide {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .slider__slide {
    height: 220px;
  }

  .slider__arrow {
    width: 36px;
    height: 36px;
  }
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  position: relative;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Imagen de fondo */
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Contenido sobre la imagen */
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Tarjeta blanca del formulario */
.contact__card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.contact__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.contact__subtitle {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 28px;
}

/* Formulario */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-dark);
  background-color: #f9f9f9;
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.contact__input::placeholder {
  color: #aaa;
}

.contact__input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.contact__submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 4px;
  border-radius: 6px;
}

/* =========================================
   CONTACT — RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .contact {
    min-height: auto;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__spacer {
    display: none;
  }

  .contact__overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .contact__card {
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .contact__card {
    padding: 28px 20px;
  }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: var(--color-dark);
  color: #aaa;
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Logo */
.footer__logo {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Heading de columna */
.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: #aaa;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__link--phone {
  font-weight: 600;
}

/* Info extra (email, ubicación) */
.footer__contact-extra {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #2e2e2e;
}

.footer__contact-extra svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Redes sociales */
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #aaa;
  transition: color var(--transition);
}

.footer__social:hover {
  color: var(--color-white);
}

/* Copyright bar */
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* =========================================
   FOOTER — RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  background-color: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  padding: 10px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Cada grupo (ubicación / horario / teléfonos) */
.topbar__group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 28px;
  color: var(--color-gray);
}

/* Separador vertical izquierdo en el segundo grupo */
.topbar__group--bordered {
  padding-left: 28px;
  border-left: 1px solid #ddd;
}

.topbar__group svg,
.topbar__phones svg {
  flex-shrink: 0;
  color: var(--color-icon);
}

.topbar__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.topbar__label {
  font-size: 11px;
  color: var(--color-label);
}

.topbar__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
}

/* Teléfonos — empujados a la derecha */
.topbar__phones {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--color-gray);
}


.topbar__phone {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
  transition: color var(--transition);
}

.topbar__phone:hover {
  color: var(--color-primary);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  background-color: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  gap: 0;
  position: relative;
}

/* Nav links — centrados */
.navbar__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

/* CTA — posición absoluta a la derecha */
.navbar__cta {
  position: absolute;
  right: 24px;
  padding: 10px 24px;
  font-size: 14px;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  position: absolute;
  right: 24px;
  transition: background-color var(--transition);
}

.hamburger:hover {
  background-color: var(--color-light-gray);
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X */
.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: var(--color-white);
  padding: 12px 24px 24px;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 60px;
  z-index: 999;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__cta {
  margin-top: 18px;
  text-align: center;
  display: block;
}

/* =========================================
   RESPONSIVE — HEADER
   ========================================= */
@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar__inner {
    justify-content: flex-start;
  }

  /* Topbar en móvil: fila con scroll horizontal */
  .topbar {
    padding: 0;
  }

  .topbar__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* Firefox */
    gap: 0;
    padding: 10px 16px;
    max-width: 100%;
  }

  .topbar__inner::-webkit-scrollbar {
    display: none;                /* Chrome / Safari */
  }

  .topbar__group {
    flex-shrink: 0;
    padding-right: 20px;
  }

  .topbar__group--bordered {
    padding-left: 20px;
    border-left: 1px solid #ddd;
  }

  .topbar__phones {
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid var(--color-border);
  }
}

/* =========================================
   NAVBAR — SCROLL STATE
   ========================================= */
.navbar.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero entrance */
.hero__content {
  animation: heroFadeIn 0.8s ease both;
}

.hero__image-wrap {
  animation: revealUp 0.9s 0.2s ease both;
}

/* Scroll-reveal: estado inicial antes de ser visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Retrasos escalonados para elementos hijo */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Input focus ring accesible */
.contact__input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

/* Botón WhatsApp del formulario */
.contact__submit--wa {
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact__submit--wa:hover {
  background-color: #1ebe5a;
}

/* Select del formulario */
.contact__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Campo con error */
.contact__input--error {
  border-color: var(--color-primary) !important;
}

.contact__hint {
  display: none;
  color: var(--color-primary);
  font-size: 0.8rem;
  margin-top: 4px;
  padding-left: 4px;
}

