/* =========================================================
   ECTA — HOJA DE ESTILOS PRINCIPAL
   01. Variables
   02. Base y accesibilidad
   03. Componentes compartidos
   04. Navegación
   05. Hero
   06. Divisores
   07. Sobre nosotros
   08. Servicios
   09. Credenciales
   10. Horario
   11. Contacto y formulario
   12. Redes sociales y WhatsApp
   13. Footer
   14. Animaciones
   15. Responsive
   ========================================================= */

/* =========================================================
   01. VARIABLES
   ========================================================= */

:root {
  --ecta-red: #e31e24;
  --ecta-red-dark: #a9080d;
  --ecta-blue: #1b6fd1;
  --ecta-blue-dark: #0a3d8f;
  --ink: #0f1b2d;
  --slate: #5a6472;
  --cloud: #fafafa;
  --pale-blue: #eaf2fc;
  --white: #ffffff;
  --line: rgba(15, 27, 45, 0.1);
  --max-width: 1180px;
  --header-height: 76px;
}

/* =========================================================
   02. BASE Y ACCESIBILIDAD
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cloud);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main,
section {
  display: block;
}

section {
  padding: 100px 0;
  scroll-margin-top: var(--header-height);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

p {
  margin-top: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ecta-blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   03. COMPONENTES COMPARTIDOS
   ========================================================= */

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ecta-blue-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--ecta-red);
}

.eyebrow-centered {
  justify-content: center;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-compact {
  min-height: 40px;
  padding: 9px 18px;
}

.btn-primary {
  color: var(--white);
  background: var(--ecta-red);
  box-shadow: 0 8px 20px -6px rgba(227, 30, 36, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ef2329;
  box-shadow: 0 12px 26px -6px rgba(227, 30, 36, 0.65);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  color: var(--ecta-blue-dark);
  border-color: var(--ecta-blue);
}

.btn-dark-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-dark-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   04. NAVEGACIÓN
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.9);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

nav.wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.logo {
  display: block;
  flex: 0 0 auto;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

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

.nav-links > a:not(.btn) {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--ecta-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(15, 27, 45, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch button {
  padding: 8px 13px;
  color: var(--slate);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  cursor: pointer;
}

.lang-switch button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================================================
   05. HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 85px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.6vw, 4.35rem);
}

.hero h1 em {
  color: var(--ecta-red);
  font-style: normal;
}

.hero .lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-stats > div {
  min-width: 0;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ecta-blue-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-image {
  position: relative;
  isolation: isolate;
  width: calc(100% + 72px);
  height: 650px;
  margin-right: -72px;
  overflow: hidden;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: 52% center;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(
    ellipse 79% 83% at 58% 50%,
    #000 50%,
    rgba(0, 0, 0, 0.92) 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 79% 83% at 58% 50%,
    #000 50%,
    rgba(0, 0, 0, 0.92) 68%,
    transparent 100%
  );
}

.hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--cloud) 0%,
    rgba(250, 250, 250, 0.92) 9%,
    rgba(250, 250, 250, 0.38) 23%,
    transparent 43%
  );
}

/* =========================================================
   06. DIVISORES
   ========================================================= */

.swoosh-divider {
  display: block;
  width: 100%;
  height: 90px;
}

.swoosh-divider path {
  fill: none;
  stroke: var(--ecta-red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.swoosh-divider.reveal path {
  stroke-dashoffset: 0;
}

.swoosh-divider.blue path {
  stroke: var(--ecta-blue);
}

/* =========================================================
   07. SOBRE NOSOTROS
   ========================================================= */

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 68px;
}

.about-visual {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--pale-blue);
  border-radius: 28px;
  box-shadow: 0 24px 60px -32px rgba(15, 27, 45, 0.35);
}

.about-visual picture,
.about-visual img {
  width: 100%;
  height: 100%;
}

.about-visual img {
  object-fit: cover;
  object-position: center;
}

.about-text h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.about-text > p {
  margin-bottom: 15px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  padding-top: 20px;
  border-top: 2px solid var(--line);
}

.value-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ecta-red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.value-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* =========================================================
   08. SERVICIOS
   ========================================================= */

.services {
  color: var(--white);
  background: var(--ink);
}

.services .eyebrow {
  color: #8fc0ff;
}

.services .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(227, 30, 36, 0.07);
  border-color: var(--ecta-red);
}

.service-num {
  display: block;
  margin-bottom: 18px;
  color: var(--ecta-red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* =========================================================
   09. CREDENCIALES
   ========================================================= */

.credentials {
  background: var(--pale-blue);
}

.credentials-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.credential-group {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 111, 209, 0.14);
  border-radius: 20px;
}

.credential-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--ecta-blue-dark);
  background: var(--white);
  border: 2px solid var(--ecta-blue);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.credential-group h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 17px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.credential-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--ecta-red);
  border-radius: 50%;
}

/* =========================================================
   10. HORARIO
   ========================================================= */

.hours {
  background: var(--white);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hours-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15, 27, 45, 0.25);
}

.hours-banner {
  display: flex;
  align-items: flex-end;
  min-height: 130px;
  padding: 20px;
}

.hours-banner.red {
  background: linear-gradient(140deg, var(--ecta-red), var(--ecta-red-dark));
}

.hours-banner.blue {
  background: linear-gradient(140deg, var(--ecta-blue), var(--ecta-blue-dark));
}

.hours-banner.dark {
  background: linear-gradient(140deg, #39424f, var(--ink));
}

.hours-banner span {
  padding: 5px 11px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.hours-body {
  padding: 25px;
}

.hours-kicker {
  margin-bottom: 9px;
  color: var(--slate);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.hours-body h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.hours-body > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   11. CONTACTO Y FORMULARIO
   ========================================================= */

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.contact-info > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.contact-detail {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 17px;
}

.contact-detail b {
  color: #8fc0ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.55;
}

.contact-detail a,
.contact-detail span {
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  color: #a8d0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--ecta-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 20px;
  color: #8fc0ff;
  font-size: 0.84rem;
  text-align: center;
}

/* =========================================================
   12. REDES SOCIALES Y WHATSAPP
   ========================================================= */

.social-block {
  margin-top: 34px;
}

.social-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-row a:hover {
  background: var(--ecta-red);
  border-color: var(--ecta-red);
  transform: translateY(-3px);
}

.social-row a.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px -8px rgba(0, 0, 0, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

/* =========================================================
   13. FOOTER
   ========================================================= */

footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.58);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--white);
}

/* =========================================================
   14. ANIMACIONES
   ========================================================= */

.reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-el.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   15. RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100vh - var(--header-height));
    padding: 22px 32px 28px;
    overflow-y: auto;
    background: rgba(250, 250, 250, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -24px rgba(15, 27, 45, 0.35);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.btn) {
    padding: 11px 0;
  }

  .nav-links .btn {
    width: 100%;
    margin: 8px 0;
  }

  .lang-switch {
    align-self: flex-start;
    margin-top: 8px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-image {
    justify-self: center;
    width: min(100%, 760px);
    height: 540px;
    margin-right: 0;
  }

  .hero-image::before {
    background: linear-gradient(
      180deg,
      var(--cloud) 0%,
      transparent 18%,
      transparent 80%,
      var(--cloud) 100%
    );
  }

  .about-visual {
    width: min(100%, 620px);
    aspect-ratio: 16 / 10;
    justify-self: center;
  }

  .services-grid,
  .credentials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 82px 0;
  }

  .hero {
    padding: 76px 0 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image {
    height: 430px;
  }

  .value-row,
  .hours-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    grid-template-columns: 115px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .wrap {
    padding-inline: 20px;
  }

  section {
    padding: 68px 0;
  }

  .nav-links {
    padding-inline: 20px;
  }

  .hero {
    padding: 62px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-ctas {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats,
  .services-grid,
  .credentials-track {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 340px;
  }

  .section-head {
    margin-bottom: 42px;
  }

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

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal-el {
    opacity: 1;
    transform: none;
  }

  .swoosh-divider path {
    stroke-dashoffset: 0;
  }
}
