  /* ===============================
    FUENTES
  ================================= */

  @font-face {
    font-family: 'Refugio NF';
    src: url('fonts/RefugioNF.ttf') format('truetype');
    font-display: swap;
  }

  @font-face {
    font-family: 'Franklin Gothic Demi Cond';
    src: url('fonts/FranklinGothicDemiCond.ttf') format('truetype');
    font-display: swap;
  } 



  :root {
      --ochre: #C4A35A;
      --beige: #F5F1E8;
      --soft-white: #FDFCFA;
      --olive: #6B7B5E;
      --dark: #2D2D2D;
      --gold: #c6a45b;   
      --dark: #2d2d2d;
      --light: #f8f6f1;
      --text: #6b6b6b;
      --red: #8B0000;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Franklin Gothic Demi Cond', Arial, sans-serif;
  }

.gold-text {
    font-family:'Refugio NF', serif;
    
}

/* ===============================
   NAVBAR DINÁMICO PREMIUM
================================= */

.navbar {
    transition: all 0.4s ease;
}

/* ===== ESTADO INICIAL (HOME ARRIBA) ===== */
.navbar {
    background: transparent;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: #ffffff !important;
    transition: 0.3s ease;
}

/* Hover en modo transparente */
.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
    color: var(--gold) !important;
}

/* ===== CUANDO HACE SCROLL ===== */
.navbar.scrolled {
    background-color: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Texto negro cuando baja */
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
    color: var(--dark) !important;
}

/* Hover en modo blanco */
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .navbar-brand:hover {
    color: var(--gold) !important;
}

/* Árbol siempre dorado */
.navbar .navbar-brand i {
    color: var(--gold) !important;
    transition: 0.3s ease;
}

/* Incluso cuando hace scroll */
.navbar.scrolled .navbar-brand i {
    color: var(--gold) !important;
}

/* ===============================
   NAVBAR MÓVIL CONSISTENTE
================================= */

/* Icono hamburguesa blanco arriba */
.navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.navbar .navbar-toggler-icon {
    filter: invert(1);
}

/* Cuando hace scroll → icono oscuro */
.navbar.scrolled .navbar-toggler {
    border-color: rgba(0,0,0,0.3);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

/* Fondo del menú desplegable en móvil */
@media (max-width: 991px) {

    /* Home arriba */
    .navbar:not(.scrolled) .navbar-collapse {
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
    }

    /* Scroll */
    .navbar.scrolled .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
    }

    /* Links blancos arriba */
    .navbar:not(.scrolled) .nav-link {
        color: #ffffff !important;
    }

    /* Links negros en scroll */
    .navbar.scrolled .nav-link {
        color: var(--dark) !important;
    }
}

  .btn-primary {
      background-color: var(--ochre);
      border: none;
      transition: all 0.3s ease;
  }

  .btn-primary:hover {
      background-color: #b8934d;
      transform: translateY(-2px);
  }

  .btn-outline-light:hover {
      transform: translateY(-2px);
  }

  .hero {
      height: 100vh;
      position: relative;
      background: url('https://iili.io/qftzOOu.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      overflow: hidden;
  }

  .hero p {
      max-width: 550px;
      margin: 25px auto 0;
      font-size: 1rem;
  }

  /* Overlay mucho más sutil */
  .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.25),
          rgba(0,0,0,0.35)
      );
      z-index: 1;
  }

  /* Asegura que el contenido esté encima */
  .hero .container {
      position: relative;
      z-index: 2;
  }

  .section-padding {
      padding: 100px 0;
  }

  .card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
  }

  .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .icon-box i {
      font-size: 2.2rem;
      color: var(--olive);
      transition: 0.3s;
  }

  .icon-box:hover i {
      transform: scale(1.2);
  }

  .cta-section {
      background-color: var(--beige);
  }

  .form-control {
      border-radius: 50px;
      padding: 12px 20px;
  }

  textarea.form-control {
      border-radius: 20px;
  }

  footer {
      background-color: #1f1f1f;
      color: #ccc;
  }

  footer a {
      color: #ccc;
      text-decoration: none;
  }

  footer a:hover {
      color: white;
  }

  /* Estilos para la nueva sección "Un Santuario Donde Florece la Vida" */
  .about-villa-real {
    background-color: #fcfbf7;
    color: #3c4a36;
    font-family: 'Franklin Gothic Demi Cond', Arial, sans-serif;
  }

  .about-villa-real .highlight {
    color: #6b7b5e;
  }

  .feature-box {
    background: #f9f7f1;
    cursor: default;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #3c4a36;
  }

  .feature-box:hover {
    background: #e9e6d5;
  }

  .feature-icon {
    font-size: 1.6rem;
    color: #6b7b5e;
    flex-shrink: 0;
  }

  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
  }

  .about-text {
    flex: 1 1 380px;
    min-width: 320px;
  }

  .about-text small {
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 520px;
    padding-left: 2.5rem;
    text-align: justify;
  }

  .about-images {
    position: relative;
    flex: 1 1 450px;
    min-width: 320px;
  }

  .about-images img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }

  .about-images .gold-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #C4A35A;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem 0 1rem 0;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(196, 163, 90, 0.6);
    max-width: 120px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
  }

  .gold-box > div {
    font-size: .8rem;
    line-height: 1;
    font-family: 'Refugio NF', serif;
    
  }

  /* Hero principal responsive */
.hero h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.2;
}


  /* Responsive */
  @media (max-width: 768px) {
    .about-villa-real {
      padding: 2rem 1rem;
    }
    .about-text, .about-images {
      flex: 1 1 100%;
      min-width: auto;
    }
    .about-text h2 {
      font-size: 2rem;
    }
    .about-images {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(2, 150px);
    }
  }
  .gold-text {
      color: var(--ochre);
  }

  .lots-section {
      background-color: var(--beige);
  }

  .lot-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.07);
      transition: 0.4s ease;
  }

  .lot-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(0,0,0,0.1);
  }

  .lot-image {
      position: relative;
  }

  .lot-image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
  }

  .status-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      color: white;
      font-weight: 500;
  }

  .available {
      background: var(--olive);
  }

  .soldout {
      background: var(--red);
  }

  .limited {
      background: var(--ochre);
  }

    .reserve {
      background: var(--gold);
  }

  .size-badge {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: white;
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 0.8rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .lot-content {
      padding: 25px;
  }

  .price {
      font-weight: 500;
  }

  .price span {
      color: var(--ochre);
      font-size: 1.2rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
  }

  .description {
      color: #666;
      font-size: 0.95rem;
  }

  .lot-tags {
      margin: 15px 0;
  }

  .lot-tags span {
      display: inline-block;
      background: var(--soft-white);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.75rem;
      margin: 5px 5px 0 0;
  }

  .btn-lot {
      width: 100%;
      background: #2d2d2d;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 50px;
      transition: 0.3s ease;
  }

  .btn-lot:hover {
      background: var(--ochre);
  }

  .btn-outline-luxury {
      border: 1px solid #2d2d2d;
      background: transparent;
      padding: 12px 35px;
      border-radius: 50px;
      transition: 0.3s ease;
  }

  .btn-outline-luxury:hover {
      background: #2d2d2d;
      color: white;
  }

  .beneficios-section {
    padding: 120px 0;
    background: var(--soft-white);
    text-align: center;
  }

  .beneficios-eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ochre);
  }

  .beneficios-title {
    font-size: 44px;
    margin-top: 10px;
    color: var(--dark);
    font-weight: 700;   /* MÁS BOLD */
  }

  .beneficios-subtitle {
    max-width: 650px;
    margin: 25px auto 70px;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
  }

  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Centrar las últimas dos tarjetas */
  .beneficio-card:nth-child(5) {
    grid-column: 2 / 3;
  }

  .beneficio-card:nth-child(6) {
    grid-column: 3 / 4;
  }

  .beneficio-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    text-align: center;
  }

  .beneficio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  }

  .beneficio-card .icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--olive);
    transition: 0.4s ease;
  }

  .beneficio-card:hover .icon {
    color: var(--ochre);
    transform: scale(1.15);
  }

  .beneficio-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
  }

  .beneficio-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  .beneficio-testimonial {
    margin-top: 100px;
    padding: 70px 50px;
    background: var(--olive);
    border-radius: 30px;
    color: white;
  }

  .quote-mark {
    font-size: 70px;
    opacity: 0.25;
    margin-bottom: 20px;
  }

  .beneficio-testimonial p {
    font-size: 22px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 30px;
  }

  .testimonial-author {
    font-size: 15px;
    opacity: 0.9;
  }

  /* ===============================
    UBICACIÓN PRIVILEGIADA
  ================================= */

  .ubicacion-section {
    padding: 120px 0;
    background: var(--soft-white);
  }

  .ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* MAPA */

  .mapa-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  }

  .mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* CONTENIDO */

  .ubicacion-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--ochre);
    font-weight: 300;
  }

  .ubicacion-title {
    font-family: 'Refugio NF', serif;
    font-size: 38px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    color: var(--dark);
  }

  .ubicacion-title span {
    color: var(--ochre);
  }

  .ubicacion-texto {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .ubicacion-lista {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ubicacion-item {
    background: var(--beige);
    padding: 18px 22px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
  }

  .ubicacion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  }

  .item-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .item-left i {
    color: var(--olive);
    font-size: 18px;
  }

  .ubicacion-item span {
    color: var(--ochre);
    font-weight: 600;
  }

  /* Responsive */

  @media (max-width: 992px) {
    .ubicacion-grid {
      grid-template-columns: 1fr;
    }

    .mapa-container {
      height: 350px;
    }
  }

  h1, h2, h3, h4, h5, h6 {
      font-family: 'Refugio NF', serif;
  }

  /* ============================= */
  /* CTA FINAL */
  /* ============================= */

  .cta-final {
      background: var(--light);
      padding: 100px 20px;
      text-align: center;
  }

  /* Badge Dorado */

  .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ochre);
      color: #fff;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 30px;
  }

  .cta-badge .dot {
      width: 8px;
      height: 8px;
      background: #ffffff;
      border-radius: 50%;
  }

  .cta-title {
      font-size: 52px;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--dark);
  }

  .cta-title span {
      color: var(--gold);
  }

  .cta-text {
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: 16px;
      color: var(--text);
  }

  /* ============================= */
  /* BOTONES CTA */
  /* ============================= */

  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 20px;

  }

  .cta-buttons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
  }

  /* Botón Dorado */

  .btn-gold {
      background-color: var(--gold) !important;
      color: #ffffff !important;
      border: none;
  }

  .btn-gold:hover {
      opacity: 0.9;
      transform: translateY(-2px);
  }

  /* Botón Blanco */

  .btn-white {
      background-color: #ffffff !important;
      color: var(--dark) !important;
      border: 1px solid var(--dark);
  }

  .btn-white:hover {
      background-color: var(--dark);
      color: #ffffff !important;
  }

  /* botón outline consistente con tu diseño */
  .cta-buttons .btn-outline {
      border: 1px solid var(--dark);
      color: var(--dark);
      padding: 14px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s ease;
      background: transparent;
      
  }

  .cta-buttons .btn-outline:hover {
      background: var(--dark);
      color: #fff;
  }

  .cta-divider {
      width: 80%;
      max-width: 900px;
      height: 1px;
      background: rgba(0, 0, 0, 0.08);
      margin: 0 auto 40px;
  }

  .cta-stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
  }

  .cta-stats h3 {
      font-size: 24px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
  }

  .cta-stats p {
      font-size: 14px;
      color: var(--text);
  }

  @media (max-width: 576px) {
      .hero .mt-4.d-flex {
          gap: 1rem !important; /* más separación en móviles */
      }
  }

  /* =============================== */
  /* DESARROLLADORA - INESCA */
  /* =============================== */

  .developer-section {
    background: var(--beige);
  }

  .developer-eyebrow {
    letter-spacing: 3px;
    color: var(--ochre);
    font-size: 13px;
  }

  .developer-title {
    font-size: 42px;
    color: var(--dark);
    margin-top: 10px;
  }

  .developer-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 16px;
  }

  .developer-section p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
  }

  .developer-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pillar-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
  }

  .pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  }

  .pillar-card i {
    font-size: 24px;
    color: var(--olive);
    margin-bottom: 10px;
  }

  .pillar-card h6 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
  }

  .pillar-card p {
    font-size: 14px;
    margin: 0;
    color: #666;
  }

  /* Responsive */

  @media (max-width: 768px) {
    .developer-title {
      font-size: 32px;
    }
  }

  /* =============================== */
  /* FORMAS DE PAGO */
  /* =============================== */

  .payment-section {
    background: var(--soft-white);
  }

  .payment-eyebrow {
    letter-spacing: 3px;
    color: var(--ochre);
    font-size: 13px;
  }

  .payment-title {
    font-size: 42px;
    color: var(--dark);
  }

  .payment-title span {
    color: var(--gold);
  }

  .payment-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 16px;
  }

  .payment-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
  }

  .payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  }

  .payment-card.highlight {
    border: 2px solid var(--gold);
  }

  .payment-icon {
    font-size: 28px;
    color: var(--olive);
    margin-bottom: 15px;
  }

  .payment-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
  }

  .payment-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
  }

  .payment-card ul {
    padding-left: 0;
    list-style: none;
  }

  .payment-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
  }

  .finance-details {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
  }

  .finance-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .finance-item span {
    color: #666;
  }

  .finance-item strong {
    color: var(--dark);
  }

  .payment-cta p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
  }

  /* =============================== */
  /* ACERCA DE NOSOTROS */
  /* =============================== */

  .about-company {
    background: var(--soft-white);
  }

  .about-eyebrow {
    letter-spacing: 3px;
    color: var(--ochre);
    font-size: 13px;
  }

  .about-title {
    font-size: 42px;
    color: var(--dark);
  }

  .about-title span {
    color: var(--gold);
  }

  .about-subtitle {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 16px;
  }

  .about-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  }

  .about-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
  }

  .founder-quote {
    margin-top: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
    font-style: italic;
    color: var(--dark);
  }

  .founder-quote span {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    color: var(--text);
  }

  /* Misión y Visión */

  .mission-vision {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .mv-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
  }

  .mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  }

  .mv-icon {
    font-size: 22px;
    color: var(--olive);
    margin-bottom: 10px;
  }

  .mv-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .mv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
  }

  /* Responsive */

  @media (max-width: 768px) {
    .about-title {
      font-size: 32px;
    }
  }

  /* =============================== */
  /* PRINCIPIOS CORPORATIVOS */
  /* =============================== */

  .developer-principles {
    padding-top: 20px;
  }

  .principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .principle-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
  }

  .principle-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  }

  .principle-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    min-width: 40px;
  }

  .principle-item h6 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .principle-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }



  /* =============================== */
  /* BENEFICIOS REFINADO */
  /* =============================== */

  .beneficios-section {
    padding: 120px 0;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 80px;
  }

  .beneficios-title {
    font-size: 42px;
    margin: 20px 0;
  }

  .beneficios-subtitle {
    line-height: 1.9;
    color: var(--text);
  }

  /* GRID */

  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* TARJETAS */

  .beneficio-card {
    padding: 50px 45px;
    border-radius: 25px;
    background: white;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .beneficio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  }

  .beneficio-card .icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
  }

  .beneficio-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .beneficio-card p {
    line-height: 1.8;
    color: var(--text);
  }

  /* BLOQUES DESTACADOS */

  .beneficio-highlight {
    margin-top: 90px;
    padding: 70px;
    border-radius: 30px;
    background: linear-gradient(to right, #fafafa, #f5f5f5);
  }

  /* =============================== */
  /* BLOQUES DESTACADOS REFINADOS */
  /* =============================== */

  .beneficio-highlight {
    position: relative;
    margin-top: 100px;
    padding: 90px 80px;
    border-radius: 34px;

    background: linear-gradient(145deg, #ffffff, #f8f8f8);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
      0 15px 50px rgba(0, 0, 0, 0.05),
      0 40px 100px rgba(0, 0, 0, 0.06);

    text-align: center;
    overflow: hidden;
  }

  /* Línea dorada superior centrada */
  .beneficio-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
  }

  .beneficio-highlight h3 {
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 0.6px;
  }

  .beneficio-highlight p {
    font-size: 17px;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text);
  }

  /* =============================== */
  /* BULLETS CENTRADOS */
  /* =============================== */

  .beneficio-highlight ul {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    display: inline-block;
    text-align: left;
  }

  .beneficio-highlight ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--text);
  }

  /* Bullet elegante centrado visualmente */
  .beneficio-highlight ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }

  /* =============================== */
  /* VISIÓN DE FUTURO SIN FONDO NEGRO */
  /* =============================== */

  .beneficio-vision {
    margin-top: 130px;
    padding: 90px 40px;
    border-radius: 0;
    background: none;
    text-align: center;
  }

  .beneficio-vision::before {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 35px;
  }

  .beneficio-vision h4 {
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }

  .beneficio-vision p {
    font-size: 18px;
    line-height: 2;
    max-width: 750px;
    margin: 0 auto;
    color: var(--text);
  }

  .beneficio-vision strong {
    display: block;
    margin-top: 35px;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 1px;
  }

  /* Responsive */

  @media (max-width: 992px) {
    .beneficios-grid {
      grid-template-columns: 1fr;
    }

    .beneficio-highlight {
      padding: 50px 30px;
    }
  }

  /* =============================== */
  /* TESTIMONIO PREMIUM */
  /* =============================== */

  .beneficio-testimonial-premium {
    margin-top: 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, #3c4a36, #6b7b5e);
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
  }

  .testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.95;
  }

  .testimonial-author {
    margin-top: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
  }

  .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-content:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.whatsapp-text {
  font-size: 15px;
}

.whatsapp-content svg {
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-content {
    padding: 16px;
    border-radius: 50%;
  }
}
