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

:root {

  --green-950: #03291e;
  --green-900: #043d2b;
  --green-800: #07523a;
  --green-700: #087646;
  --green-600: #009653;
  --green-500: #0bbf69;

  --green-300: #8be5b5;
  --green-200: #bff5d7;
  --green-100: #e6f6ee;

  --ink: #10231c;
  --muted: #5c6b65;
  --line: #d8e3de;

  --paper: #ffffff;
  --soft: #f1f8f5;

  --radius-lg: 32px;
  --radius-md: 22px;

  --shadow:
    0 26px 70px rgba(3, 41, 30, 0.12);

  --container:
    min(1180px, calc(100% - 40px));
}


/* =========================================================
   GENERAL
   ========================================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  color: var(--ink);

  background: var(--paper);

  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}


img,
video {

  display: block;

  max-width: 100%;
}


a {

  color: inherit;

  text-decoration: none;
}


button,
input,
select,
textarea {

  font: inherit;
}


button {

  cursor: pointer;
}


code {

  padding: .15em .4em;

  border-radius: 6px;

  background: #edf3f0;

  font-size: .9em;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.skip-link {

  position: fixed;

  top: 12px;
  left: 12px;

  z-index: 9999;

  padding: 10px 14px;

  color: #fff;

  background: #000;

  border-radius: 10px;

  transform: translateY(-140%);
}


.skip-link:focus {

  transform: translateY(0);
}


/* =========================================================
   CONTENEDORES
   ========================================================= */

.container {

  width: var(--container);

  margin-inline: auto;
}


.section {

  padding: 110px 0;
}


/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

.eyebrow {

  margin: 0 0 18px;

  color: var(--green-600);

  font-size: .78rem;

  font-weight: 800;

  letter-spacing: .14em;

  text-transform: uppercase;
}


.eyebrow-light {

  color: var(--green-200);
}


h1,
h2,
h3,
p {

  margin-top: 0;
}


h1,
h2,
h3 {

  line-height: 1.08;

  letter-spacing: -.035em;
}


h1 {

  margin-bottom: 26px;

  font-size:
    clamp(3.2rem, 7vw, 6.65rem);

  font-weight: 800;
}


h2 {

  margin-bottom: 28px;

  font-size:
    clamp(2.45rem, 5vw, 4.65rem);

  font-weight: 800;
}


h3 {

  font-size: 1.45rem;
}


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

.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 0 25px;

  border: 1px solid transparent;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.button:hover {

  transform: translateY(-2px);
}


.button-primary {

  color: #fff;

  background: var(--green-600);

  box-shadow:
    0 13px 30px
    rgba(0, 150, 83, .24);
}


.button-primary:hover {

  background: var(--green-500);
}


.button-ghost {

  color: #fff;

  border-color:
    rgba(255, 255, 255, .55);

  background:
    rgba(255, 255, 255, .04);
}


.button-ghost:hover {

  background:
    rgba(255, 255, 255, .12);
}


.button-light {

  color: var(--green-900);

  background: #fff;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  color: #fff;

  background:
    rgba(3, 41, 30, .95);

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  backdrop-filter:
    blur(14px);
}


.header-inner {

  min-height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;
}


/* =========================================================
   LOGO HEADER
   ========================================================= */

.brand {

  display: flex;

  align-items: center;

  gap: 14px;

  flex-shrink: 0;

  text-decoration: none;
}


.brand img {

  height: 55px;

  width: auto;

  max-width: none;

  display: block;

  object-fit: contain;
}


.brand-text {

  color: #ffffff;

  font-size: 1.35rem;

  font-weight: 700;

  letter-spacing: .08em;

  white-space: nowrap;
}


/* =========================================================
   MENÚ
   ========================================================= */

.main-nav {

  display: flex;

  align-items: center;

  gap: 23px;

  font-size: .88rem;

  font-weight: 700;
}


.main-nav a:not(.nav-catalog) {

  opacity: .86;

  transition:
    opacity .2s ease;
}


.main-nav a:hover,
.main-nav a.active {

  opacity: 1;
}


.nav-catalog {

  padding: 12px 20px;

  border-radius: 999px;

  background: var(--green-600);
}


/* =========================================================
   MENÚ HAMBURGUESA
   ========================================================= */

.menu-toggle {

  display: none;

  width: 44px;

  height: 44px;

  padding: 10px;

  border: 0;

  border-radius: 10px;

  background:
    rgba(255, 255, 255, .08);
}


.menu-toggle span {

  display: block;

  height: 2px;

  margin: 5px 0;

  background: #fff;
}


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

.hero {

  position: relative;

  overflow: hidden;

  min-height:
    calc(100vh - 78px);

  color: #fff;

  background:

    radial-gradient(
      circle at 85% 16%,
      rgba(130, 244, 183, .42),
      transparent 31%
    ),

    linear-gradient(
      110deg,
      var(--green-950),
      #0d6846 58%,
      #4bbb83 100%
    );
}


.hero-grid {

  min-height:
    calc(100vh - 78px);

  display: grid;

  grid-template-columns:
    1.12fr .88fr;

  align-items: center;

  gap: 62px;

  padding-block: 70px;
}


.hero-copy {

  position: relative;

  z-index: 2;
}


.hero h1 span {

  color: #aef0ca;
}


.hero-description {

  max-width: 690px;

  margin-bottom: 32px;

  color:
    rgba(255, 255, 255, .84);

  font-size: 1.08rem;
}


.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 54px;
}


.hero-points {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  max-width: 780px;

  padding-top: 25px;

  border-top:
    1px solid rgba(255, 255, 255, .2);
}


.hero-points div {

  padding-right: 24px;
}


.hero-points dt {

  margin-bottom: 7px;

  font-weight: 800;
}


.hero-points dd {

  margin: 0;

  color:
    rgba(255, 255, 255, .7);

  font-size: .83rem;
}


.hero-media {

  position: relative;

  z-index: 2;
}


.hero-photo-wrap {

  position: relative;

  max-width: 520px;

  margin-left: auto;
}


.hero-photo-wrap img {

  width: 100%;

  aspect-ratio: .83;

  object-fit: cover;

  border-radius: 44px;

  box-shadow:
    0 40px 90px
    rgba(0, 0, 0, .28);
}


.floating-label {

  position: absolute;

  top: 24px;

  left: -30px;

  padding: 12px 18px;

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

  border-radius: 999px;

  color: var(--green-900);

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

  font-size: .8rem;

  font-weight: 800;
}


.floating-badge {

  position: absolute;

  right: -32px;

  bottom: 72px;

  display: grid;

  place-content: center;

  width: 136px;

  height: 136px;

  padding: 20px;

  border: 7px solid #fff;

  border-radius: 50%;

  text-align: center;

  color: #fff;

  background: var(--green-600);

  font-size: .72rem;

  line-height: 1.3;

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


.floating-badge strong {

  display: block;

  font-size: 1.7rem;
}


.hero-orb {

  position: absolute;

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

  border-radius: 50%;
}


.hero-orb-one {

  top: -210px;

  right: -80px;

  width: 520px;

  height: 520px;
}


.hero-orb-two {

  right: 9%;

  bottom: -420px;

  width: 720px;

  height: 720px;

  border-width: 80px;

  border-color:
    rgba(255, 255, 255, .07);
}


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

.about {

  background: #fff;
}


.about-grid {

  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  align-items: center;

  gap: 95px;
}


.about-card {

  position: relative;

  width:
    min(100%, 480px);

  margin-inline: auto;
}


.about-card img {

  width: 100%;

  aspect-ratio: .82;

  object-fit: cover;

  border-radius: 36px;

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


.about-badge {

  position: absolute;

  right: -45px;

  bottom: 55px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  width: 145px;

  height: 145px;

  border: 7px solid #fff;

  border-radius: 50%;

  color: #fff;

  text-align: center;

  background: var(--green-600);

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


.about-badge strong {

  font-size: 1.9rem;
}


.about-badge span {

  font-size: .72rem;

  line-height: 1.2;
}


.about-copy p:not(.eyebrow) {

  max-width: 690px;

  color: var(--muted);

  font-size: 1.02rem;
}


.text-link {

  display: inline-flex;

  gap: 10px;

  align-items: center;

  color: var(--green-600);

  font-weight: 800;
}


.text-link span {

  transition:
    transform .2s ease;
}


.text-link:hover span {

  transform:
    translateX(4px);
}


/* =========================================================
   PRODUCTOS
   ========================================================= */

.products {

  background: var(--soft);
}


.section-heading {

  display: grid;

  grid-template-columns:
    1.3fr .7fr;

  align-items: end;

  gap: 90px;

  margin-bottom: 48px;
}


.section-heading h2 {

  margin-bottom: 0;
}


.section-heading > p {

  margin:
    0 0 10px;

  color: var(--muted);
}


.product-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}


.product-card {

  overflow: hidden;

  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 18px 45px
    rgba(3, 41, 30, .07);
}


.product-image {

  position: relative;

  overflow: hidden;
}


.product-image img {

  width: 100%;

  aspect-ratio: 1 / .95;

  object-fit: cover;

  transition:
    transform .55s ease;
}


.product-card:hover
.product-image img {

  transform:
    scale(1.045);
}


.product-tag {

  position: absolute;

  top: 18px;

  left: 18px;

  padding: 8px 12px;

  border-radius: 999px;

  color: var(--green-900);

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

  font-size: .68rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.product-content {

  padding:
    30px 28px 32px;
}


.product-kicker {

  margin-bottom: 10px;

  color: var(--green-600);

  font-size: .72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.product-content h3 {

  margin-bottom: 12px;
}


.product-content >
p:not(.product-kicker) {

  min-height: 76px;

  color: var(--muted);
}


/* =========================================================
   VIDEO
   ========================================================= */

.movement {

  position: relative;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      100deg,
      #03412d,
      #007842
    );
}


.movement-grid {

  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  align-items: center;

  gap: 70px;
}


.movement h2 {

  font-size:
    clamp(2.7rem, 5vw, 4.7rem);
}


.movement-copy >
p:not(.eyebrow) {

  color:
    rgba(255, 255, 255, .78);
}


.check-list {

  display: grid;

  gap: 12px;

  padding: 0;

  margin:
    28px 0 34px;

  list-style: none;
}


.check-list li {

  display: flex;

  align-items: center;

  gap: 11px;
}


.check-list li::before {

  content: "✓";

  display: grid;

  place-content: center;

  width: 27px;

  height: 27px;

  flex:
    0 0 27px;

  border-radius: 50%;

  color: var(--green-900);

  background:
    var(--green-200);

  font-weight: 900;
}


.video-shell {

  padding: 12px;

  border-radius: 34px;

  background:
    rgba(0, 0, 0, .32);

  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, .28);
}


.video-shell video {

  width: 100%;

  aspect-ratio: 16 / 9;

  border-radius: 24px;

  background: #000;
}


.movement-ring {

  position: absolute;

  left: -300px;

  bottom: -410px;

  width: 730px;

  height: 730px;

  border:
    90px solid
    rgba(255, 255, 255, .05);

  border-radius: 50%;
}


/* =========================================================
   BENEFICIOS
   ========================================================= */

.features-strip {

  padding: 62px 0;

  color: #fff;

  background:
    var(--green-600);
}


.feature-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}


.feature-grid article {

  min-height: 145px;

  padding: 20px 44px;

  border-right:
    1px solid
    rgba(255, 255, 255, .22);
}


.feature-grid article:first-child {

  padding-left: 0;
}


.feature-grid article:last-child {

  padding-right: 0;

  border-right: 0;
}


.feature-grid span {

  color: #9df0c2;

  font-size: .76rem;

  font-weight: 800;
}


.feature-grid h3 {

  margin:
    14px 0 10px;
}


.feature-grid p {

  margin: 0;

  color:
    rgba(255, 255, 255, .78);
}


/* =========================================================
   TESTIMONIOS
   ========================================================= */

.center-heading {

  max-width: 760px;

  margin:
    0 auto 48px;

  text-align: center;
}


.testimonial-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}


.testimonial-card {

  display: flex;

  min-height: 340px;

  flex-direction: column;

  padding: 36px;

  border:
    1px solid var(--line);

  border-radius: 26px;

  background: #fff;
}


.stars {

  color: var(--green-600);

  letter-spacing: .2em;
}


.testimonial-card
blockquote {

  margin:
    30px 0 34px;

  font-size: 1.02rem;
}


.testimonial-card footer {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: auto;
}


.avatar {

  display: grid;

  place-content: center;

  width: 49px;

  height: 49px;

  border-radius: 50%;

  color: #fff;

  background:
    var(--green-600);

  font-size: .75rem;

  font-weight: 800;
}


.testimonial-card footer strong,
.testimonial-card footer small {

  display: block;
}


.testimonial-card footer small {

  color: #8a9691;
}


/* =========================================================
   PREGUNTAS FRECUENTES
   ========================================================= */

.faq {

  background: #fff;
}


.faq-grid {

  display: grid;

  grid-template-columns:
    .78fr 1.22fr;

  gap: 90px;
}


.faq-intro
p:not(.eyebrow) {

  color: var(--muted);
}


.accordion-item {

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


.accordion-item:last-child {

  border-bottom:
    1px solid var(--line);
}


.accordion-item h3 {

  margin: 0;
}


.accordion-item button {

  display: flex;

  width: 100%;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 28px 0;

  border: 0;

  color: var(--ink);

  text-align: left;

  background: transparent;

  font-size: 1.08rem;

  font-weight: 800;
}


.plus {

  display: grid;

  place-content: center;

  width: 38px;

  height: 38px;

  flex:
    0 0 38px;

  border-radius: 50%;

  color: var(--green-700);

  background:
    var(--green-100);

  transition:
    transform .25s ease;
}


.accordion-item button
[aria-expanded="true"] .plus {

  transform:
    rotate(45deg);
}


.accordion-panel {

  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows .32s ease;
}


.accordion-panel > p {

  overflow: hidden;

  margin: 0;

  color: var(--muted);
}


.accordion-item.open
.accordion-panel {

  grid-template-rows: 1fr;
}


.accordion-item.open
.accordion-panel > p {

  padding-bottom: 28px;
}


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

.contact {

  background:
    var(--soft);
}


.contact-grid {

  display: grid;

  grid-template-columns:
    .82fr 1.18fr;

  gap: 70px;

  align-items: start;
}


.contact-copy >
p:not(.eyebrow) {

  color: var(--muted);
}


.contact-cards {

  display: grid;

  gap: 14px;

  margin:
    34px 0 28px;
}


.contact-cards > * {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 16px;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background: #fff;
}


.contact-icon {

  display: grid;

  place-content: center;

  width: 46px;

  height: 46px;

  border-radius: 50%;

  color: #fff;

  background:
    var(--green-600);

  font-size: .75rem;

  font-weight: 800;
}


.contact-cards small,
.contact-cards strong {

  display: block;
}


.contact-cards small {

  color: #8b9792;
}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.social-links {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


.social-links a {

  padding: 9px 15px;

  border:
    1px solid var(--line);

  border-radius: 999px;

  background: #fff;

  font-size: .78rem;

  font-weight: 800;

  transition:
    transform .2s ease,
    border-color .2s ease;
}


.social-links a:hover {

  transform:
    translateY(-2px);

  border-color:
    var(--green-600);
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.contact-form {

  padding: 44px;

  border-radius: 30px;

  background: #fff;

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


.contact-form h3 {

  margin-bottom: 30px;

  font-size: 1.85rem;
}


.contact-form label {

  display: block;

  margin:
    14px 0 7px;

  font-size: .78rem;

  font-weight: 800;
}


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

  width: 100%;

  padding:
    15px 16px;

  border:
    1px solid #cad7d1;

  border-radius: 13px;

  color: var(--ink);

  background: #fff;

  outline: none;
}


.contact-form textarea {

  resize: vertical;

  min-height: 140px;
}


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

  border-color:
    var(--green-600);

  box-shadow:
    0 0 0 4px
    rgba(0, 150, 83, .1);
}


.contact-form .invalid {

  border-color: #cf3131;
}


.field-error {

  min-height: 18px;

  display: block;

  color: #b71f1f;

  font-size: .72rem;
}


.form-submit {

  width: 100%;

  margin-top: 14px;
}


.form-note {

  margin:
    13px 0 0;

  color: #84918c;

  font-size: .73rem;
}


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

.site-footer {

  padding-top: 70px;

  color: #fff;

  background:
    var(--green-950);
}


.footer-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 70px;

  align-items: start;

  padding-bottom: 45px;
}


.footer-col {

  display: flex;

  flex-direction: column;

  gap: 12px;
}


/* =========================================================
   LOGO FOOTER
   IGUAL AL HEADER
   ========================================================= */

.footer-logo-row {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 16px;
}


.footer-logo-row img {

  height: 55px;

  width: auto;

  max-width: none;

  display: block;

  flex-shrink: 0;

  object-fit: contain;
}


.footer-grid
.footer-logo-text {

  color: #ffffff;

  font-size: 1.35rem;

  font-weight: 700;

  letter-spacing: .08em;

  line-height: 1;

  white-space: nowrap;
}


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

.footer-title {

  display: block;

  margin-bottom: 8px;

  color: #ffffff;

  font-size: 1.1rem;

  font-weight: 800;
}


.footer-description {

  max-width: 380px;

  margin: 0;

  color:
    rgba(255, 255, 255, .72);

  font-size: .95rem;

  line-height: 1.6;
}


.footer-nav {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 8px;
}


.footer-nav a {

  color:
    rgba(255, 255, 255, .72);

  font-size: .95rem;

  transition:
    color .2s ease;
}


.footer-nav a:hover {

  color: #ffffff;
}


.footer-credits {

  display: flex;

  flex-direction: column;

  gap: 8px;
}


.footer-credits p {

  margin: 0;

  color:
    rgba(255, 255, 255, .72);

  font-size: .95rem;

  line-height: 1.5;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-bottom {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  padding: 20px 0;

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

  color:
    rgba(255, 255, 255, .56);

  font-size: .85rem;
}


.footer-bottom p {

  margin: 0;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float {

  position: fixed;

  right: 22px;

  bottom: 22px;

  z-index: 900;

  display: grid;

  place-content: center;

  width: 58px;

  height: 58px;

  border: 4px solid #fff;

  border-radius: 50%;

  color: #fff;

  background: #19c96e;

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, .2);

  font-size: .78rem;

  font-weight: 900;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast {

  position: fixed;

  left: 50%;

  bottom: 30px;

  z-index: 1200;

  max-width:
    min(90vw, 520px);

  padding:
    13px 18px;

  border-radius: 12px;

  color: #fff;

  background:
    var(--green-950);

  opacity: 0;

  transform:
    translate(-50%, 24px);

  pointer-events: none;

  transition:
    .25s ease;
}


.toast.show {

  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

.reveal {

  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity .75s ease,
    transform .75s ease;
}


.reveal.visible {

  opacity: 1;

  transform:
    translateY(0);
}


.reveal-delay {

  transition-delay: .12s;
}


.reveal-delay-small {

  transition-delay: .08s;
}


.reveal-delay-medium {

  transition-delay: .16s;
}


/* =========================================================
   ACCESIBILIDAD ANIMACIONES
   ========================================================= */

@media
(prefers-reduced-motion: reduce) {

  html {

    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;
  }


  .reveal {

    opacity: 1;

    transform: none;
  }

}


/* =========================================================
   TABLET / MENÚ MÓVIL
   ========================================================= */

@media
(max-width: 1060px) {


  .menu-toggle {

    display: block;
  }


  .main-nav {

    position: fixed;

    inset:
      78px 18px auto;

    display: grid;

    gap: 4px;

    padding: 18px;

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

    border-radius: 18px;

    background:
      var(--green-950);

    box-shadow:
      0 25px 60px
      rgba(0, 0, 0, .28);

    opacity: 0;

    transform:
      translateY(-15px);

    pointer-events: none;

    transition:
      .22s ease;
  }


  .main-nav.open {

    opacity: 1;

    transform:
      translateY(0);

    pointer-events: auto;
  }


  .main-nav a {

    padding:
      10px 12px;
  }


  .nav-catalog {

    text-align: center;
  }


  .hero-grid {

    grid-template-columns:
      1fr;

    gap: 46px;
  }


  .hero-copy {

    padding-top: 20px;
  }


  .hero-photo-wrap {

    margin:
      0 auto;
  }


  .about-grid,
  .movement-grid,
  .contact-grid {

    gap: 55px;
  }

}


/* =========================================================
   TABLETS PEQUEÑAS
   ========================================================= */

@media
(max-width: 820px) {


  :root {

    --container:
      min(100% - 28px, 680px);
  }


  .section {

    padding:
      82px 0;
  }


  h1 {

    font-size:
      clamp(3rem, 14vw, 5rem);
  }


  h2 {

    font-size:
      clamp(2.3rem, 10vw, 3.8rem);
  }


  .hero-grid {

    padding-block:
      55px 70px;
  }


  .hero-points {

    grid-template-columns:
      1fr;

    gap: 18px;
  }


  .hero-points div {

    padding-right: 0;
  }


  .floating-label {

    left: 14px;
  }


  .floating-badge {

    right: -2px;

    bottom: 28px;

    width: 118px;

    height: 118px;
  }


  .about-grid,
  .movement-grid,
  .faq-grid,
  .contact-grid {

    grid-template-columns:
      1fr;
  }


  .about-grid {

    gap: 70px;
  }


  .about-badge {

    right: -4px;
  }


  .section-heading {

    grid-template-columns:
      1fr;

    gap: 20px;
  }


  .product-grid,
  .testimonial-grid {

    grid-template-columns:
      1fr;
  }


  .product-content >
  p:not(.product-kicker) {

    min-height: auto;
  }


  .feature-grid {

    grid-template-columns:
      1fr;
  }


  .feature-grid article,
  .feature-grid article:first-child,
  .feature-grid article:last-child {

    padding:
      25px 0;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, .22);
  }


  .feature-grid article:last-child {

    border-bottom: 0;
  }


  .footer-grid {

    grid-template-columns:
      1fr;

    gap: 35px;
  }


  .footer-bottom {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media
(max-width: 560px) {


  .header-inner {

    min-height: 70px;
  }


  /* LOGO HEADER */

  .brand {

    gap: 10px;
  }


  .brand img {

    height: 45px;

    width: auto;
  }


  .brand-text {

    font-size: 1rem;

    letter-spacing: .06em;
  }


  /* MENÚ */

  .main-nav {

    top: 70px;
  }


  /* HERO */

  .hero-actions {

    display: grid;
  }


  .button {

    width: 100%;
  }


  .hero-photo-wrap {

    max-width: 95%;
  }


  .floating-badge {

    width: 105px;

    height: 105px;

    border-width: 5px;
  }


  .floating-badge strong {

    font-size: 1.35rem;
  }


  /* NOSOTROS */

  .about-badge {

    width: 110px;

    height: 110px;

    border-width: 5px;

    right: -2px;
  }


  .about-badge strong {

    font-size: 1.45rem;
  }


  /* FORMULARIO */

  .contact-form {

    padding:
      28px 20px;
  }


  /* TESTIMONIOS */

  .testimonial-card {

    padding: 28px;
  }


  /* FOOTER */

  .footer-logo-row {

    gap: 10px;
  }


  .footer-logo-row img {

    height: 45px;

    width: auto;
  }


  .footer-grid
  .footer-logo-text {

    font-size: 1rem;

    letter-spacing: .06em;
  }


  .footer-bottom {

    text-align: left;
  }


  /* WHATSAPP */

  .whatsapp-float {

    width: 54px;

    height: 54px;

    right: 14px;

    bottom: 14px;
  }

}