:root {
  /* Mismos colores de la página principal */
  --clean-bg: #111823;
  --clean-bg-soft: #162030;
  --clean-surface: #121826;
  --clean-surface-light: #1b2638;

  --clean-primary: #ff9a1f;
  --clean-primary-light: #ffb347;
  --clean-primary-dark: #d97800;

  --clean-text: #e6e9ef;
  --clean-muted: #a9b1bd;
  --clean-white: #ffffff;

  --clean-line: rgba(255, 255, 255, 0.08);
  --clean-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);

  --clean-radius: 18px;
  --clean-radius-large: 28px;
  --clean-container: 1160px;
}

/* Configuración general */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  color: var(--clean-text);
  background: var(--clean-bg);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

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

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

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

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

.clean-container {
  width: min(var(--clean-container), 92vw);
  margin: 0 auto;
}

/* Encabezado */

.clean-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--clean-line);
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(18px);
}

.clean-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.clean-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.clean-brand__logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 9px;
  object-fit: contain;
}

.clean-brand__text {
  display: grid;
  gap: 2px;
}

.clean-brand__text strong {
  color: var(--clean-text);
  font-size: 15px;
  line-height: 1.2;
}

.clean-brand__text small {
  color: var(--clean-muted);
  font-size: 10px;
  line-height: 1.2;
}

.clean-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.clean-nav > a:not(.clean-btn) {
  position: relative;
  color: var(--clean-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.clean-nav > a:not(.clean-btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--clean-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.clean-nav > a:not(.clean-btn):hover {
  color: var(--clean-text);
}

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

.clean-burger {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--clean-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.clean-burger span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--clean-text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Botones */

.clean-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.clean-btn:hover {
  transform: translateY(-2px);
}

.clean-btn--primary {
  color: #121212;
  background: linear-gradient(
    100deg,
    var(--clean-primary),
    var(--clean-primary-light)
  );
  box-shadow: 0 14px 35px rgba(255, 154, 31, 0.18);
}

.clean-btn--primary:hover {
  box-shadow: 0 18px 42px rgba(255, 154, 31, 0.27);
}

.clean-btn--outline {
  color: var(--clean-text);
  border-color: var(--clean-line);
  background: rgba(255, 255, 255, 0.035);
}

.clean-btn--outline:hover {
  border-color: rgba(255, 180, 71, 0.35);
  background: rgba(255, 180, 71, 0.07);
}

.clean-btn--small {
  min-height: 39px;
  padding: 9px 12px;
  border-radius: 11px;
  font-size: 12px;
}

.clean-btn--block {
  width: 100%;
}

/* Portada */

.clean-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--clean-line);
}

.clean-hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 5% 15%,
      rgba(255, 154, 31, 0.2),
      transparent 65%
    ),
    radial-gradient(
      750px 450px at 95% 20%,
      rgba(255, 180, 71, 0.1),
      transparent 65%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025),
      transparent
    );
  pointer-events: none;
}

.clean-hero__grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.clean-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 180, 71, 0.24);
  border-radius: 999px;
  color: var(--clean-primary-light);
  background: rgba(255, 154, 31, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.clean-hero h1 {
  max-width: 680px;
  margin: 18px 0 17px;
  font-size: clamp(40px, 5.2vw, 67px);
  line-height: 1.02;
  letter-spacing: -2.2px;
}

.clean-hero h1 span {
  display: block;
  color: var(--clean-primary-light);
}

.clean-lead {
  max-width: 60ch;
  margin: 0;
  color: var(--clean-muted);
  font-size: 17px;
  line-height: 1.72;
}

.clean-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.clean-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 25px;
}

.clean-benefit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--clean-muted);
  font-size: 12px;
  font-weight: 600;
}

.clean-benefit span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 154, 31, 0.3);
  border-radius: 50%;
  color: var(--clean-primary-light);
  background: rgba(255, 154, 31, 0.1);
  font-size: 11px;
}

.clean-hero__media {
  position: relative;
  min-height: 505px;
  overflow: visible;
  border: 1px solid var(--clean-line);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 154, 31, 0.16),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--clean-shadow);
}

.clean-hero__media > img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  border-radius: 34px;
}

.clean-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(10, 15, 23, 0.68)
  );
  pointer-events: none;
}

.clean-hero__floating-card {
  position: absolute;
  right: -20px;
  bottom: 28px;
  z-index: 2;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 180, 71, 0.28);
  border-radius: 17px;
  background: rgba(15, 20, 31, 0.92);
  backdrop-filter: blur(15px);
  box-shadow: var(--clean-shadow);
}

.clean-hero__floating-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--clean-primary-light);
  background: rgba(255, 154, 31, 0.13);
  font-size: 20px;
}

.clean-hero__floating-card div:last-child {
  display: grid;
  gap: 4px;
}

.clean-hero__floating-card strong {
  font-size: 13px;
}

.clean-hero__floating-card span {
  color: var(--clean-muted);
  font-size: 11px;
  line-height: 1.4;
}

/* Franja de confianza */

.clean-trust {
  border-bottom: 1px solid var(--clean-line);
  background: var(--clean-bg-soft);
}

.clean-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.clean-trust__grid > div {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px 24px;
  border-right: 1px solid var(--clean-line);
}

.clean-trust__grid > div:first-child {
  border-left: 1px solid var(--clean-line);
}

.clean-trust__grid strong {
  font-size: 14px;
}

.clean-trust__grid span {
  color: var(--clean-muted);
  font-size: 12px;
}

/* Secciones generales */

.clean-section {
  padding: 90px 0;
  background: var(--clean-bg);
}

.clean-section--soft {
  border-top: 1px solid var(--clean-line);
  border-bottom: 1px solid var(--clean-line);
  background:
    radial-gradient(
      700px 380px at 85% 15%,
      rgba(255, 154, 31, 0.075),
      transparent 70%
    ),
    var(--clean-bg-soft);
}

.clean-section__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.clean-section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.clean-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clean-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.clean-section h2 {
  margin: 0 0 13px;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.clean-section__head p,
.clean-business__content > p,
.clean-quote__content > p {
  margin: 0;
  color: var(--clean-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Tarjetas de servicios */

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

.clean-service {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius-large);
  background: var(--clean-surface);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.clean-service:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 180, 71, 0.32);
}

.clean-service__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 154, 31, 0.16),
      rgba(255, 255, 255, 0.04)
    );
}

.clean-service__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(5, 20, 15, 0.7)
  );
  pointer-events: none;
}

.clean-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clean-service:hover .clean-service__image img {
  transform: scale(1.045);
}

.clean-service__image > span {
  position: absolute;
  bottom: 14px;
  left: 15px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 180, 71, 0.25);
  border-radius: 999px;
  color: var(--clean-primary-light);
  background: rgba(15, 20, 31, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
}

.clean-service__content {
  position: relative;
  padding: 24px;
}

.clean-service__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-top: -48px;
  margin-bottom: 15px;
  border: 4px solid var(--clean-surface);
  border-radius: 14px;
  background: var(--clean-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 21px;
}

.clean-service h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.clean-service p {
  margin: 0;
  color: var(--clean-muted);
  font-size: 13px;
  line-height: 1.65;
}

.clean-service ul {
  display: grid;
  gap: 8px;
  margin: 17px 0;
  padding: 0;
  list-style: none;
}

.clean-service li {
  position: relative;
  padding-left: 18px;
  color: var(--clean-muted);
  font-size: 12px;
  line-height: 1.45;
}

.clean-service li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--clean-primary);
  font-weight: 900;
}

.clean-service__link {
  display: inline-flex;
  margin-top: 3px;
  color: var(--clean-primary-light);
  font-size: 12px;
  font-weight: 800;
}

.clean-service__link:hover {
  text-decoration: underline;
}

.clean-service--special {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  border-color: rgba(255, 154, 31, 0.3);
  background:
    radial-gradient(
      400px 250px at 100% 0%,
      rgba(255, 154, 31, 0.22),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      var(--clean-surface-light),
      var(--clean-surface)
    );
}

.clean-service__special-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border: 1px solid rgba(255, 180, 71, 0.28);
  border-radius: 17px;
  color: var(--clean-primary-light);
  background: rgba(255, 154, 31, 0.11);
  font-size: 25px;
}

.clean-service__special-label {
  margin-bottom: 9px;
  color: var(--clean-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.clean-service--special h3 {
  font-size: 25px;
  line-height: 1.2;
}

.clean-service--special p {
  margin-bottom: 22px;
  font-size: 14px;
}

/* Antes y después */

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.before-after__item {
  margin: 0;
  padding: 0;
}

.before-after__image {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius-large);
  background: var(--clean-surface);
  box-shadow: var(--clean-shadow);
}

.before-after__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 65%,
    rgba(8, 13, 20, 0.66)
  );
  pointer-events: none;
}

.before-after__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(25, 30, 29, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.before-after__label--after {
  color: #121212;
  background: var(--clean-primary-light);
}

.before-after figcaption {
  padding: 14px 5px 0;
  color: var(--clean-muted);
  font-size: 12px;
  text-align: center;
}

.clean-results-note {
  margin: 25px auto 0;
  color: var(--clean-muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

/* Empresas */

.clean-business {
  position: relative;
  overflow: hidden;
}

.clean-business::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 154, 31, 0.045);
  pointer-events: none;
}

.clean-business__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
}

.clean-business__content h2 {
  max-width: 620px;
}

.clean-check-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.clean-check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--clean-muted);
  font-size: 13px;
}

.clean-check-list li span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 154, 31, 0.27);
  border-radius: 50%;
  color: var(--clean-primary-light);
  background: rgba(255, 154, 31, 0.09);
  font-size: 11px;
  font-weight: 900;
}

.clean-business__panel {
  padding: 38px;
  border: 1px solid rgba(255, 180, 71, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(
      450px 250px at 100% 0%,
      rgba(255, 154, 31, 0.18),
      transparent 75%
    ),
    var(--clean-surface);
  box-shadow: var(--clean-shadow);
}

.clean-business__panel > div {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border: 1px solid rgba(255, 180, 71, 0.25);
  border-radius: 18px;
  background: rgba(255, 154, 31, 0.1);
  font-size: 27px;
}

.clean-business__panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.clean-business__panel p {
  margin: 0 0 22px;
  color: var(--clean-muted);
  font-size: 13px;
  line-height: 1.7;
}

.clean-business__panel > span {
  display: inline-flex;
  margin: 4px 3px;
  padding: 7px 10px;
  border: 1px solid var(--clean-line);
  border-radius: 999px;
  color: var(--clean-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  font-weight: 700;
}

/* Proceso */

.clean-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.clean-process article {
  position: relative;
  padding: 25px;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius);
  background: rgba(255, 255, 255, 0.025);
}

.clean-process article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -13px;
  z-index: 2;
  color: var(--clean-primary);
  font-size: 18px;
  font-weight: 800;
}

.clean-process article > span {
  color: var(--clean-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.clean-process h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.clean-process p {
  margin: 0;
  color: var(--clean-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Preguntas frecuentes */

.clean-faq {
  max-width: 900px;
  display: grid;
  gap: 11px;
}

.clean-faq details {
  padding: 0 20px;
  border: 1px solid var(--clean-line);
  border-radius: 16px;
  background: var(--clean-surface);
  transition: border-color 0.2s ease;
}

.clean-faq details[open] {
  border-color: rgba(255, 180, 71, 0.28);
}

.clean-faq summary {
  position: relative;
  padding: 20px 35px 20px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.clean-faq summary::-webkit-details-marker {
  display: none;
}

.clean-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--clean-primary);
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-50%);
}

.clean-faq details[open] summary::after {
  content: "−";
}

.clean-faq details p {
  margin: 0;
  padding: 0 35px 20px 0;
  color: var(--clean-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Cotización */

.clean-quote {
  border-top: 1px solid var(--clean-line);
  background:
    radial-gradient(
      800px 450px at 5% 10%,
      rgba(255, 154, 31, 0.13),
      transparent 65%
    ),
    var(--clean-bg-soft);
}

.clean-quote__grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: 65px;
}

.clean-contact-data {
  display: grid;
  gap: 13px;
  margin-top: 29px;
}

.clean-contact-data > div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--clean-muted);
  font-size: 13px;
}

.clean-contact-data span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 154, 31, 0.2);
  border-radius: 11px;
  background: rgba(255, 154, 31, 0.07);
}

.clean-form {
  padding: 28px;
  border: 1px solid var(--clean-line);
  border-radius: 28px;
  background: var(--clean-surface);
  box-shadow: var(--clean-shadow);
}

.clean-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--clean-muted);
  font-size: 12px;
  font-weight: 700;
}

.clean-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.clean-form input,
.clean-form select,
.clean-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--clean-line);
  border-radius: 13px;
  outline: none;
  color: var(--clean-text);
  background: rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.clean-form input::placeholder,
.clean-form textarea::placeholder {
  color: rgba(168, 195, 186, 0.57);
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
  border-color: rgba(255, 154, 31, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 154, 31, 0.09);
}

.clean-form textarea {
  min-height: 130px;
  resize: vertical;
}

.clean-form select option {
  color: #121826;
  background: #ffffff;
}

.clean-form__note {
  margin: 12px 0 0;
  color: var(--clean-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

/* Pie de página */

.clean-footer {
  padding: 30px 0;
  border-top: 1px solid var(--clean-line);
  background: #04100c;
}

.clean-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.clean-brand--footer {
  margin-bottom: 12px;
}

.clean-footer p {
  margin: 0;
  color: var(--clean-muted);
  font-size: 10px;
}

.clean-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.clean-footer__links a {
  color: var(--clean-muted);
  font-size: 11px;
}

.clean-footer__links a:hover {
  color: var(--clean-primary-light);
}

/* WhatsApp flotante */

.clean-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 999px;
  color: #eafff1;
  background: rgba(18, 134, 63, 0.91);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.clean-whatsapp-float:hover {
  transform: translateY(-2px);
  background: rgba(20, 153, 70, 0.96);
}

.clean-whatsapp-float strong {
  font-size: 12px;
}

/* Responsive para tablets */

@media (max-width: 1050px) {
  .clean-nav {
    gap: 13px;
  }

  .clean-nav > a:not(.clean-btn) {
    font-size: 12px;
  }

  .clean-hero__grid {
    gap: 35px;
  }

  .clean-hero__floating-card {
    right: 18px;
  }
}

@media (max-width: 920px) {
  .clean-header__inner {
    min-height: 68px;
  }

  .clean-burger {
    display: block;
  }

  .clean-nav {
    position: absolute;
    top: 68px;
    right: 4vw;
    left: 4vw;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--clean-line);
    border-radius: 18px;
    background: rgba(11, 15, 20, 0.98);
    box-shadow: var(--clean-shadow);
    backdrop-filter: blur(20px);
  }

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

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

  .clean-nav > a:not(.clean-btn)::after {
    display: none;
  }

  .clean-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .clean-hero__media {
    min-height: 440px;
  }

  .clean-hero__media > img {
    height: 440px;
  }

  .clean-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .clean-trust__grid > div:nth-child(3) {
    border-left: 1px solid var(--clean-line);
  }

  .clean-services {
    grid-template-columns: 1fr 1fr;
  }

  .clean-business__grid,
  .clean-quote__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clean-process {
    grid-template-columns: 1fr 1fr;
  }

  .clean-process article::after {
    display: none;
  }
}

/* Responsive para celulares */

@media (max-width: 600px) {
  html {
    scroll-padding-top: 74px;
  }

  .clean-container {
    width: min(92vw, 100%);
  }

  .clean-brand__logo {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
  }

  .clean-brand__text strong {
    font-size: 13px;
  }

  .clean-brand__text small {
    font-size: 9px;
  }

  .clean-hero__grid {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .clean-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .clean-lead {
    font-size: 15px;
  }

  .clean-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .clean-hero__actions .clean-btn {
    width: 100%;
  }

  .clean-benefits {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-hero__media,
  .clean-hero__media > img {
    height: 360px;
    min-height: 360px;
  }

  .clean-hero__floating-card {
    right: 13px;
    bottom: 13px;
    left: 13px;
    max-width: none;
  }

  .clean-trust__grid {
    grid-template-columns: 1fr;
  }

  .clean-trust__grid > div {
    min-height: 82px;
    border-right: 1px solid var(--clean-line);
    border-bottom: 1px solid var(--clean-line);
    border-left: 1px solid var(--clean-line);
  }

  .clean-trust__grid > div:last-child {
    border-bottom: none;
  }

  .clean-section {
    padding: 68px 0;
  }

  .clean-section__head {
    margin-bottom: 29px;
  }

  .clean-services {
    grid-template-columns: 1fr;
  }

  .clean-service__image {
    height: 230px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after__image {
    height: 340px;
  }

  .clean-business__panel {
    padding: 27px;
  }

  .clean-process {
    grid-template-columns: 1fr;
  }

  .clean-form {
    padding: 20px;
    border-radius: 21px;
  }

  .clean-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .clean-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-whatsapp-float strong {
    display: none;
  }

  .clean-whatsapp-float {
    width: 51px;
    height: 51px;
    justify-content: center;
    padding: 0;
  }
}