:root {
  --rojo: #e1251b;
  --rojo-dark: #b20f0f;
  --vino: #611232;
  --vino-light: #9b2247;
  --negro: #111111;
  --gris: #666666;
  --gris-claro: #f7f7f7;
  --blanco: #ffffff;
  --radius: 26px;
  --shadow: 0 22px 60px rgba(97, 18, 50, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(97, 18, 50, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo img {
  width: 180px;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  color: var(--blanco);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  transition: 0.3s ease;
}

.btn-header:hover {
  background: linear-gradient(135deg, var(--vino), var(--rojo-dark));
  transform: translateY(-2px);
}

/* HERO */

.hero {
  padding: 100px 0 95px;
  background:
    radial-gradient(
      circle at top left,
      rgba(155, 34, 71, 0.08),
      transparent 35%
    ),
    linear-gradient(to bottom, #ffffff, #faf7f8);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-slider {
  position: relative;
}

.hero-slider::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(155, 34, 71, 0.12);
  border-radius: 50%;
  top: -35px;
  left: -35px;
  z-index: 0;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto -25px -25px auto;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  background: rgba(225, 37, 27, 0.12);
  z-index: 0;
}

.hero-slider-wrapper {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.14);
  z-index: 2;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 7s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.16)
    ),
    linear-gradient(180deg, rgba(97, 18, 50, 0.34), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  color: #ffffff;
  max-width: 760px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  display: block;
  animation: heroTextIn 0.85s ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-slider-controls {
  position: absolute;
  left: 70px;
  bottom: 45px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
  transition: 0.3s ease;
}

.hero-dot.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
}

.hero-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.14);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
}

.hero-progress.is-animating span {
  animation: progressBar 6s linear both;
}

@keyframes progressBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* FORM */

.hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(155, 34, 71, 0.13);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-form-card h2 {
  font-size: 1.85rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-form-card p {
  color: var(--gris);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #e6e0e2;
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--negro);
  background: #ffffff;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--vino-light);
  box-shadow: 0 0 0 4px rgba(155, 34, 71, 0.08);
}

textarea {
  resize: none;
}

.send_bt_1 button,
.btn-primary {
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 17px 24px;
  color: var(--blanco);
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  transition: 0.3s ease;
}

.send_bt_1 button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--vino), var(--rojo-dark));
  transform: translateY(-2px);
}

.trust-items {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.trust-items div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gris);
  font-size: 14px;
}

.trust-items i {
  color: var(--vino-light);
}

/* SECCIONES */

.section {
  padding: 95px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title span,
.mini-title {
  display: inline-block;
  color: var(--vino-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title h2,
.why-content h2,
.final-form-content h2,
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  font-weight: 800;
}

.section-title p {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--gris);
  font-size: 1.05rem;
}

.benefits {
  background:
    radial-gradient(
      circle at top right,
      rgba(155, 34, 71, 0.08),
      transparent 30%
    ),
    #f8f8f8;
}

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

.benefit-card {
  background: var(--blanco);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 34, 71, 0.08);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--vino-light);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--gris);
}

/* PRODUCTOS */

.products-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(155, 34, 71, 0.06),
      transparent 30%
    ),
    #fafafa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(155, 34, 71, 0.1);
  box-shadow: 0 24px 60px rgba(97, 18, 50, 0.08);
  transition: 0.35s ease;
  min-height: 360px;
}

.product-split-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(97, 18, 50, 0.12);
}

.product-split-image {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(155, 34, 71, 0.08),
      transparent 35%
    ),
    linear-gradient(135deg, #faf7f8, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0;
}

.product-split-image::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #e1251b;
  border-radius: 50%;
  top: -40px;
  left: -40px;
}

.product-split-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-height: 320px;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-split-card:hover .product-split-image img {
  transform: scale(1.05);
}

.product-split-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #faf0f3;
  color: var(--vino-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.product-split-content h3 {
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--negro);
}

.product-split-content p {
  color: var(--gris);
  margin-bottom: 22px;
  font-size: 0.96rem;
}

.product-split-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-split-content li {
  position: relative;
  padding-left: 24px;
  color: var(--negro);
  font-size: 0.95rem;
}

.product-split-content li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.product-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.35s ease;
}

.product-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--vino), var(--rojo-dark));
  box-shadow: 0 18px 40px rgba(97, 18, 50, 0.18);
}

.product-btn i {
  transition: 0.3s ease;
}

.product-btn:hover i {
  transform: translateX(4px);
}

/* WHY */

.why-us {
  background: #ffffff;
}

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

.why-content p {
  margin-top: 20px;
  color: var(--gris);
  font-size: 1.05rem;
}

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

.stat-card {
  padding: 32px;
  border-radius: var(--radius);
  background: #faf7f8;
  border: 1px solid rgba(155, 34, 71, 0.1);
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--vino-light);
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--gris);
}

/* CTA */

.final-cta {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)),
    url("../img/cta-ventanas.jpg") center/cover;
  color: var(--blanco);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(225, 37, 27, 0.18),
    rgba(97, 18, 50, 0.25),
    transparent
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}

.cta-content p {
  margin: 20px auto 35px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-auto {
  width: auto;
  min-width: 190px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-outline {
  min-width: 190px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  color: var(--blanco);
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(97, 18, 50, 0.18);
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* FORM FINAL */

.final-form-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(155, 34, 71, 0.08),
      transparent 35%
    ),
    #ffffff;
}

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

.final-form-content p {
  margin-top: 20px;
  color: var(--gris);
  max-width: 620px;
  font-size: 1.05rem;
}

.final-form-badges {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.final-form-badges div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #faf7f8;
  color: var(--negro);
  border: 1px solid rgba(155, 34, 71, 0.08);
}

.final-form-badges i {
  color: var(--vino-light);
}

/* FOOTER */

.footer {
  padding: 34px 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */

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

@media (max-width: 992px) {
  .hero-grid,
  .why-grid,
  .final-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider-wrapper {
    min-height: 620px;
  }

  .hero-content {
    padding: 45px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 125px 0 70px;
  }

  .logo img {
    width: 220px;
  }

  .btn-header {
    padding: 11px 16px;
    font-size: 14px;
  }

  .hero-slider-wrapper {
    min-height: 680px;
  }

  .hero-content {
    padding: 32px;
    justify-content: flex-end;
    padding-bottom: 82px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-slider-controls {
    left: 32px;
    bottom: 36px;
  }

  .hero-form-card {
    padding: 26px;
  }

  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 0;
  }

  .product-split-card {
    grid-template-columns: 1fr;
  }

  .product-split-image {
    min-height: 260px;
  }

  .product-split-content {
    padding: 28px;
  }
}

/* Boton flotante */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 62px;
  height: 62px;

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

  border-radius: 50%;

  background: #25d366;
  color: #ffffff;

  font-size: 32px;

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);

  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.45);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  animation: whatsappPulse 1.8s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

/* PRODUCTOS PUERTAS */

.products-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(155, 34, 71, 0.06),
      transparent 30%
    ),
    #fafafa;
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.door-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(155, 34, 71, 0.1);
  box-shadow: 0 24px 60px rgba(97, 18, 50, 0.08);
  transition: 0.35s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.door-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(97, 18, 50, 0.12);
}

.door-image {
  position: relative;
  height: 280px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  overflow: hidden;
}

.door-image::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(225, 37, 27, 0.12);
  border-radius: 50%;
  top: -60px;
  left: -60px;
}

.door-image::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(97, 18, 50, 0.08);
  border-radius: 28px;
  right: -35px;
  bottom: -35px;
  transform: rotate(12deg);
}

.door-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: 0.4s ease;
}

.door-card:hover .door-image img {
  transform: scale(1.05);
}

.door-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #faf0f3;
  color: var(--vino-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.door-content h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--negro);
}

.door-content p {
  color: var(--gris);
  margin-bottom: 22px;
  font-size: 0.96rem;
}

.door-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: auto;
}

.door-content li {
  position: relative;
  padding-left: 24px;
  color: var(--negro);
  font-size: 0.95rem;
}

.door-content li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.product-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.35s ease;
}

.product-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--vino), var(--rojo-dark));
  box-shadow: 0 18px 40px rgba(97, 18, 50, 0.18);
}

.product-btn i {
  transition: 0.3s ease;
}

.product-btn:hover i {
  transform: translateX(4px);
}

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

  .door-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .door-image {
    height: 230px;
    padding: 20px;
  }

  .door-image img {
    max-height: 190px;
  }

  .door-content {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .btn-header {
    width: 52px;
    height: 52px;

    padding: 0;

    border-radius: 50%;

    justify-content: center;
  }

  .btn-header span {
    display: none;
  }

  .btn-header i {
    font-size: 1.45rem;
    margin: 0;
  }
}

@media (max-width: 360px) {
  .container {
    width: 92%;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-slider-wrapper {
    min-height: 350px;
    border-radius: 22px;
  }

  .hero-content {
    padding: 24px 18px 55px;
    justify-content: flex-end;
  }

  .tag {
    font-size: 9px;
    padding: 7px 10px;
    margin-bottom: 12px;
  }

  .hero-content h1 {
    font-size: 1.45rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .hero-slider-controls {
    left: 18px;
    bottom: 28px;
  }

  .hero-progress {
    height: 3px;
  }
}

.benefits-simple {
  background:
    radial-gradient(
      circle at top right,
      rgba(155, 34, 71, 0.07),
      transparent 30%
    ),
    #f8f8f8;
}

.benefits-simple .section-title {
  margin-bottom: 45px;
}

.benefits-simple-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.benefit-simple-card {
  background: #ffffff;
  border: 1px solid rgba(155, 34, 71, 0.08);
  border-radius: 22px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(97, 18, 50, 0.06);
  transition: 0.3s ease;
}

.benefit-simple-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(97, 18, 50, 0.11);
}

.benefit-simple-card i {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rojo), var(--vino-light));
  color: #ffffff;
  font-size: 1.35rem;
}

.benefit-simple-card h3 {
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--negro);
}

@media (max-width: 1100px) {
  .benefits-simple-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .benefit-simple-card {
    padding: 24px 14px;
  }
}


.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;
  margin-top: 28px;
  padding: 15px 26px;

  border-radius: 999px;
  background: #25d366;
  color: #ffffff;

  font-weight: 800;
  font-size: 1rem;

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.hero-whatsapp-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
  background: #1ebe5d;
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.45);
}

.hero-whatsapp-btn i {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .hero-whatsapp-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}