/*====================================================
  D'AGENCIA — STYLE.CSS
  Sitio público
====================================================*/

/*====================================================
  VARIABLES
====================================================*/

:root {
  --background: #020617;
  --background-soft: #0b1220;
  --surface: #111827;
  --surface-light: #1e293b;

  --red: #dc2626;
  --red-light: #ef4444;
  --red-dark: #b91c1c;

  --white: #ffffff;
  --text: #e2e8f0;
  --muted: #94a3b8;

  --border: rgba(255, 255, 255, 0.12);

  --green: #25d366;
  --yellow: #fbbf24;

  --radius-small: 14px;
  --radius: 24px;
  --radius-large: 32px;

  --shadow:
    0 22px 55px rgba(0, 0, 0, 0.35);

  --transition:
    0.25s ease;

  --content-width: 1250px;
}

/*====================================================
  RESET
====================================================*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top left,
      rgba(220, 38, 38, 0.16),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--surface),
      var(--background)
    );

  color: var(--white);
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;

  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

ul {
  list-style: none;
}

section {
  padding:
    105px
    max(6%, calc((100% - var(--content-width)) / 2));
}

/*====================================================
  SELECCIÓN Y SCROLL
====================================================*/

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

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border: 3px solid var(--background);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/*====================================================
  ENCABEZADO
====================================================*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(15, 23, 42, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);

  transition:
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.94);
  border-color: var(--border);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.45);
}

/*====================================================
  NAVEGACIÓN
====================================================*/

.navbar {
  width: min(100%, var(--content-width));
  min-height: 86px;

  margin: 0 auto;
  padding: 14px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;

  line-height: 1.05;
}

.logo span {
  color: var(--red-light);

  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo small {
  margin-top: 4px;

  color: var(--muted);

  font-size: 12px;
  letter-spacing: 0.3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.nav-menu a {
  position: relative;

  padding: 10px 0;

  color: var(--text);

  font-size: 15px;
  font-weight: 700;

  transition:
    color var(--transition);
}

.nav-menu a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;

  height: 2px;

  background: var(--red-light);

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

/*====================================================
  BOTONES GENERALES
====================================================*/

.nav-btn,
.btn,
.contact-form button,
.review-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 25px;

  color: var(--white);
  background: var(--red);

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 900;
  text-align: center;
  cursor: pointer;

  box-shadow:
    0 10px 35px rgba(220, 38, 38, 0.28);

  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.nav-btn:hover,
.btn:hover,
.contact-form button:hover,
.review-form button:hover {
  background: var(--red-light);

  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(220, 38, 38, 0.38);
}

.nav-btn:active,
.btn:active,
.contact-form button:active,
.review-form button:active {
  transform: scale(0.97);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/*====================================================
  BOTÓN DEL MENÚ MÓVIL
====================================================*/

.menu-toggle {
  display: none;

  padding: 7px;

  color: var(--white);
  background: transparent;

  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

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

.hero {
  position: relative;

  min-height: 100vh;
  padding-top: 155px;
  padding-bottom: 95px;

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 55px;

  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.97),
      rgba(15, 23, 42, 0.82),
      rgba(2, 6, 23, 0.95)
    ),
    url(
      "https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1600&q=80"
    );

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(239, 68, 68, 0.16),
      transparent 30%
    );
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

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

.hero-tag,
.subtitle {
  color: var(--red-light);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;

  margin: 17px 0 24px;

  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -2px;
}

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

.hero-text {
  max-width: 700px;

  color: var(--text);

  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 31px;

  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  justify-self: end;

  width: min(100%, 340px);
  padding: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.94),
      rgba(15, 23, 42, 0.9)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);

  transition:
    transform var(--transition),
    border-color var(--transition);
}

.hero-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 68, 68, 0.48);
}

.hero-card span {
  display: inline-block;

  font-size: 50px;
  line-height: 1;
}

.hero-card h3 {
  margin: 18px 0 10px;

  font-size: 25px;
}

.hero-card p {
  color: var(--text);
  line-height: 1.7;
}

/*====================================================
  ESTADÍSTICAS
====================================================*/

.stats {
  padding:
    34px
    max(6%, calc((100% - var(--content-width)) / 2));

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  background: var(--background-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  min-height: 130px;
  padding: 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.9),
      rgba(15, 23, 42, 0.9)
    );

  border: 1px solid var(--border);
  border-radius: 21px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.24);
}

.stat h2 {
  color: var(--red-light);

  font-size: clamp(30px, 4vw, 43px);
  line-height: 1;
}

.stat p {
  margin-top: 9px;

  color: var(--text);
  font-weight: 700;
}

/*====================================================
  ENCABEZADOS DE SECCIÓN
====================================================*/

.section-header {
  width: min(100%, 780px);

  margin: 0 auto 56px;

  text-align: center;
}

.section-header h2,
.about-content h2,
.contact-info h2 {
  margin: 12px 0 15px;

  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.section-header p,
.about-content p,
.contact-info p {
  color: var(--text);

  font-size: 17px;
  line-height: 1.8;
}

/*====================================================
  ELEMENTOS REVELADOS AL HACER SCROLL
====================================================*/

.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*====================================================
  TARJETAS BASE
====================================================*/

.service-card,
.testimonial,
.about-box,
.review-form,
.contact-form,
.gallery-item,
.brand-card {
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.92),
      rgba(15, 23, 42, 0.9)
    );

  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

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

.service-card {
  position: relative;
  overflow: hidden;

  min-height: 300px;
  padding: 32px;

  border-radius: var(--radius);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(239, 68, 68, 0.08),
      transparent 45%
    );

  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 68, 68, 0.55);

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.4);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card img {
  width: 100%;
  height: 175px;

  margin-bottom: 22px;

  object-fit: cover;
  border-radius: 18px;
}

.service-icon,
.icon {
  width: 66px;
  height: 66px;

  margin-bottom: 21px;

  display: grid;
  place-items: center;

  background:
    rgba(220, 38, 38, 0.15);

  border: 1px solid
    rgba(239, 68, 68, 0.16);
  border-radius: 19px;

  font-size: 31px;
}

.service-card h3 {
  margin-bottom: 12px;

  font-size: 23px;
  line-height: 1.2;
}

.service-card p {
  color: var(--text);

  line-height: 1.75;
}

.service-card small {
  display: inline-block;

  margin-top: 14px;

  color: var(--muted);

  font-size: 13px;
  font-weight: 700;
}

.service-price {
  margin-top: 14px;

  color: var(--red-light) !important;

  font-size: 17px;
  font-weight: 900;
}

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

.about {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(280px, 0.85fr);
  align-items: center;
  gap: 48px;

  background:
    radial-gradient(
      circle at top right,
      rgba(220, 38, 38, 0.15),
      transparent 35%
    ),
    var(--surface);
}

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

.about-list {
  margin-top: 27px;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-list div {
  min-height: 58px;
  padding: 17px;

  display: flex;
  align-items: center;

  color: var(--text);
  background:
    rgba(255, 255, 255, 0.055);

  border: 1px solid
    rgba(255, 255, 255, 0.07);
  border-radius: 15px;
}

.about-box {
  padding: 37px;

  border-radius: var(--radius-large);
}

.about-box h3 {
  margin-bottom: 13px;

  font-size: 31px;
  line-height: 1.15;
}

.about-box p {
  color: var(--text);
  line-height: 1.75;
}

/*====================================================
  MARCAS
====================================================*/

.brands-section {
  background: var(--surface);
}

.brands-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.brand-card {
  min-height: 85px;
  padding: 22px;

  display: grid;
  place-items: center;

  color: var(--text);

  border-radius: 18px;

  font-weight: 900;
  text-align: center;

  transition:
    transform var(--transition),
    border-color var(--transition);
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color:
    rgba(239, 68, 68, 0.45);
}

/*====================================================
  GALERÍA
====================================================*/

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px;
}

.gallery-item{
    overflow:hidden;
    border-radius:24px;
    transition:.30s;
    cursor:pointer;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img,
.gallery-item video{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.gallery-item:hover img,
.gallery-item:hover video{
    transform:scale(1.06);
}

.gallery-caption{
    padding:20px;
}

.gallery-caption h3{
    margin-bottom:8px;
    font-size:21px;
}

.gallery-caption p{
    color:var(--text);
    line-height:1.7;
}

/*====================================================
  OPINIONES
====================================================*/

.testimonials{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:25px;
}

.testimonial{
    padding:30px;
    border-radius:24px;
    transition:.30s;
}

.testimonial:hover{
    transform:translateY(-7px);
}

.testimonial p{
    color:var(--text);
    line-height:1.8;
    margin:18px 0;
}

.testimonial h4{
    font-size:20px;
}

.stars{
    color:#FFD54A;
    font-size:22px;
    letter-spacing:3px;
}

.reply{
    margin-top:20px;
    padding:16px;

    background:rgba(255,255,255,.05);

    border-left:4px solid var(--red);

    border-radius:12px;

    color:var(--text);

    line-height:1.7;
}

/*====================================================
  FORMULARIO DE OPINIÓN
====================================================*/

.review-form{
    margin-top:45px;

    padding:35px;

    border-radius:28px;
}

.review-form h3{
    margin-bottom:20px;
    font-size:28px;
}

.review-form input,
.review-form textarea,
.review-form select{

    width:100%;

    padding:16px 18px;

    margin-bottom:16px;

    background:#1E293B;

    color:white;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    outline:none;

    transition:.25s;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus{

    border-color:var(--red);

    box-shadow:0 0 0 3px rgba(220,38,38,.18);

}

.review-form textarea{

    min-height:170px;

    resize:vertical;

}

/*====================================================
  ANIMACIÓN TARJETAS
====================================================*/

.service-card,
.gallery-item,
.testimonial,
.brand-card,
.about-box{

    animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(35px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*====================================================
  SECCIÓN DEL MAPA
====================================================*/

.map-section {
  background: var(--surface);
}

.map-container {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  min-height: 420px;

  border: 0;
}

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

.contact {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(340px, 1.1fr);
  align-items: start;
  gap: 48px;

  background: var(--background-soft);
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-data {
  margin-top: 26px;

  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.92),
      rgba(15, 23, 42, 0.9)
    );

  border: 1px solid var(--border);
  border-radius: 18px;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.contact-card h3 {
  margin-bottom: 8px;

  color: var(--white);
  font-size: 17px;
}

.contact-card p {
  color: var(--text);
  line-height: 1.65;
}

/*====================================================
  FORMULARIO DE CONTACTO Y CITAS
====================================================*/

.contact-form {
  padding: 34px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  border-radius: var(--radius-large);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  padding: 16px 18px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.065);

  border: 1px solid var(--border);
  border-radius: 15px;

  outline: none;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--red-light);

  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.13);
}

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

.contact-form select option {
  color: #111827;
}

/*====================================================
  BOTÓN FLOTANTE DE WHATSAPP
====================================================*/

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: auto;
  min-width: 64px;
  max-width: min(290px, calc(100vw - 32px));
  min-height: 64px;
  padding: 10px 18px 10px 11px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #25d366,
      #16a34a
    );

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.36),
    0 0 0 0 rgba(37, 211, 102, 0.42);

  overflow: hidden;

  animation:
    whatsappPulse 2.4s infinite;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.025);

  filter: brightness(1.05);

  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.43),
    0 0 0 10px rgba(37, 211, 102, 0.1);
}

.whatsapp-btn:active {
  transform: scale(0.97);
}

.whatsapp-icon {
  flex: 0 0 auto;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;

  font-size: 24px;
  line-height: 1;
}

.whatsapp-text {
  min-width: 0;

  display: flex;
  flex-direction: column;

  line-height: 1.15;
  white-space: nowrap;
}

.whatsapp-text strong {
  color: var(--white);

  font-size: 14px;
}

.whatsapp-text small {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 11px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.36),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.36),
      0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.36),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

.footer {
  padding:
    34px
    max(6%, calc((100% - var(--content-width)) / 2));

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  color: var(--muted);
  background: var(--background);

  border-top: 1px solid var(--border);
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: var(--text);

  transition:
    color var(--transition);
}

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

/*====================================================
  RESPONSIVE — TABLET
====================================================*/

@media (max-width: 1100px) {
  .navbar {
    padding-inline: 22px;
  }

  .nav-menu {
    gap: 17px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    justify-self: center;
  }

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

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

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

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-info {
    position: static;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }
}

/*====================================================
  RESPONSIVE — MENÚ MÓVIL
====================================================*/

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    top: 86px;
    right: 16px;
    left: 16px;
    z-index: 1001;

    padding: 22px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    background: rgba(15, 23, 42, 0.98);

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-14px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 13px 15px;

    background: rgba(255, 255, 255, 0.045);
    border-radius: 12px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  section {
    padding:
      88px
      6%;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 85px;

    background-attachment: scroll;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 65px);
  }

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

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

/*====================================================
  RESPONSIVE — CELULAR
====================================================*/

@media (max-width: 650px) {
  .navbar {
    min-height: 78px;
    padding: 12px 16px;
  }

  .logo span {
    font-size: 23px;
  }

  .logo small {
    max-width: 180px;
    font-size: 10px;
  }

  .nav-menu {
    top: 78px;
  }

  section {
    padding:
      75px
      18px;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-block: 14px 20px;

    font-size: clamp(37px, 13vw, 56px);
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-card {
    padding: 27px;
  }

  .stats {
    padding:
      25px
      18px;

    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid,
  .brands-grid,
  .about-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .gallery-item img,
  .gallery-item video {
    height: 230px;
  }

  .about-box,
  .review-form,
  .contact-form {
    padding: 25px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2,
  .about-content h2,
  .contact-info h2 {
    font-size: clamp(31px, 10vw, 43px);
  }

  .map-container iframe {
    min-height: 340px;
  }

  .footer {
    padding:
      27px
      18px;

    flex-direction: column;
    text-align: center;
  }

  .whatsapp-btn {
    right: 15px;
    bottom: 15px;

    width: 58px;
    min-width: 58px;
    max-width: 58px;
    min-height: 58px;

    padding: 7px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;

    font-size: 24px;
  }
}

/*====================================================
  ACCESIBILIDAD Y MOVIMIENTO REDUCIDO
====================================================*/

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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