    /* ========== RESET Y VARIABLES ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #FEFCF5;
      color: #1A3B5D;  /* azul principal */
      line-height: 1.5;
      overflow-x: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    h1, h2, h3, h4, .hero-title, .section-header h2, .navbar-custom .brand-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: #0A2B44;
    }

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

    a {
      text-decoration: none;
      transition: all 0.2s ease;
    }

    /* ========== NAVBAR ESTÁNDAR (basada en Home) ========== */
.navbar-custom {
  background-color: #FFFFFF;
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 2px solid #D4E6B0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-weight: 600;
  font-size: 1.25rem;
  color: #1A3B5D;
}

.brand-sub {
  font-weight: normal;
  font-size: 0.9rem;
  color: #7CB566;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  align-items: center;
}

.nav-menu li a {
  color: #1A3B5D;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #7CB566;
}

/* Botones dentro del menú */
.nav-menu .btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-gold {
  background-color: #F4B942;
  color: #1A3B5D;
  border: none;
}

.btn-gold:hover {
  background-color: #e0a82e;
  color: #1A3B5D;
}

.btn-emergency {
  background-color: #DC3545;
  color: white;
}

.btn-emergency:hover {
  background-color: #bb2d3b;
  color: white;
}

.btn-appointment {
  background-color: #1A3B5D;
  color: white;
}

.btn-appointment:hover {
  background-color: #0f2a44;
  color: white;
}

/* Botón hamburguesa (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1A3B5D;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    gap: 20px;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 0;
  }
}

    .logo-icon {
      background: linear-gradient(135deg, #E6B422, #8CB36C);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3rem;
      color: #0A2B44;
      font-family: 'Outfit', sans-serif;
    }

    .brand-text {
      font-size: 1.25rem;
      font-weight: 600;
      color: #0A2B44;
      letter-spacing: -0.3px;
    }

    .brand-sub {
      font-weight: 400;
      font-size: 0.9rem;
      color: #5A7D9A;
    }

    .btn-emergency, .btn-appointment {
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-emergency {
      background-color: #E6B422;
      color: #0A2B44;
    }
    .btn-emergency:hover {
      background-color: #D4A01E;
    }

    .btn-appointment {
      background-color: #7CB566;
      color: white;
    }
    .btn-appointment:hover {
      background-color: #6A9E52;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: #0A2B44;
      cursor: pointer;
    }

    /* ========== HERO ========== */
    .hero {
      padding: 140px 0 80px;
      background: #FFF9EF;
    }

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

    .hero-badge {
      background-color: #E6B42220;
      color: #7CB566;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 3.3rem;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .underlined {
      position: relative;
      display: inline-block;
    }
    .underlined::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 100%;
      height: 12px;
      background-color: #E6B422;
      opacity: 0.35;
      z-index: -1;
      border-radius: 20px;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: #2C4C6E;
      margin-bottom: 32px;
      max-width: 90%;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .btn-primary {
      background-color: #7CB566;
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
    }
    .btn-primary:hover {
      background-color: #6A9E52;
    }

    .btn-secondary {
      background-color: transparent;
      border: 1.5px solid #0A2B44;
      color: #0A2B44;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
    }
    .btn-secondary:hover {
      background-color: #0A2B44;
      color: white;
    }

    .trust-indicator {
      color: #2C4C6E;
      font-size: 0.95rem;
    }
    .trust-indicator i {
      color: #E6B422;
      margin-right: 6px;
    }

    .hero-image {
      position: relative;
    }
    .hero-image img {
      border-radius: 32px;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
      width: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
    }
    .floating-card {
      position: absolute;
      bottom: 20px;
      right: -10px;
      background: white;
      padding: 12px 20px;
      border-radius: 60px;
      font-weight: 600;
      box-shadow: 0 12px 20px rgba(0,0,0,0.08);
      color: #0A2B44;
      border-left: 5px solid #7CB566;
    }

    /* ========== STATS ========== */
    .stats-bar {
      background-color: #FFEFD0;
      padding: 48px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }
    .stat-item {
      color: #1A3B5D;
    }
    .stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 800;
      font-family: 'Outfit', sans-serif;
      color: #7CB566;
      margin-bottom: 8px;
    }

    /* ========== SERVICIOS ========== */
    .services {
      padding: 80px 0;
      background: #FEFCF5;
    }
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-tag {
      background-color: #E6B42220;
      color: #7CB566;
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 16px;
    }
    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 16px;
    }
    .section-sub {
      color: #2C4C6E;
      max-width: 650px;
      margin: 0 auto;
      font-size: 1.1rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }
    .service-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
      transition: 0.2s;
      border-bottom: 3px solid #7CB566;
    }
    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .service-content {
      padding: 24px;
    }
    .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1A3B5D;
      font-weight: 600;
      margin-top: 16px;
      border-bottom: 2px solid #E6B422;
    }

    /* ========== PLANES ========== */
    .plans {
      background-color: #FFF7E6;
      padding: 80px 0;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }
    .plan-card {
      background: white;
      border-radius: 28px;
      padding: 28px 20px;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
    .discount {
      position: absolute;
      top: -12px;
      right: 20px;
      background-color: #7CB566;
      color: white;
      padding: 6px 12px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.85rem;
    }
    .plan-btn {
      background-color: #0A2B44;
      border: none;
      color: white;
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      margin-top: 20px;
      cursor: pointer;
    }
    .plan-btn:hover {
      background-color: #7CB566;
    }

    /* ========== HISTORIA ========== */
    .history {
      padding: 80px 0;
      background-color: #FEFCF5;
    }
    .history-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .history-gallery {
      display: flex;
      gap: 20px;
    }
    .main-img {
      border-radius: 28px;
      width: 55%;
      object-fit: cover;
      aspect-ratio: 3/4;
    }
    .gallery-stack {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 45%;
    }
    .gallery-stack img {
      border-radius: 20px;
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
    }
    .key-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }
    .key-points div {
      background: white;
      padding: 16px;
      border-radius: 20px;
      border-left: 4px solid #E6B422;
    }
    .key-points i {
      font-size: 1.6rem;
      color: #7CB566;
      margin-bottom: 8px;
      display: block;
    }

    /* ========== VALORES ========== */
    .values {
      background-color: #FFEFD0;
      padding: 80px 0;
    }
    .values-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-top: 40px;
    }
    .value-item {
      background: white;
      padding: 28px 20px;
      border-radius: 28px;
      text-align: center;
      flex: 1 1 180px;
      border-top: 3px solid #7CB566;
    }
    .value-item i {
      font-size: 2.5rem;
      color: #E6B422;
      margin-bottom: 16px;
    }

    /* ========== EQUIPO ========== */
    .team {
      padding: 80px 0;
      background: #FEFCF5;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
    }
    .team-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
    .team-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .team-card span {
      color: #7CB566;
      font-weight: 500;
      display: block;
      margin: 8px 0;
    }

    /* ========== CTA ========== */
    .cta-block {
      padding: 60px 0;
      background: #FFF7E6;
    }
    .cta-wrapper {
      background: white;
      border-radius: 48px;
      padding: 48px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
      box-shadow: 0 20px 35px -10px rgba(0,0,0,0.08);
    }
    .btn-whatsapp {
      background-color: #7CB566;
      color: white;
      padding: 12px 24px;
      border-radius: 40px;
      font-weight: 600;
    }
    .btn-location {
      background-color: #E6B422;
      color: #0A2B44;
      padding: 12px 24px;
      border-radius: 40px;
      font-weight: 600;
    }
    .btn-location:hover {
      transform: scale(1.05);
      background-color: #5A7D9A;
      color: white;
      
    }

    .cta-info {
      background-color: #FEF9EF;
      padding: 28px;
      border-radius: 32px;
    }
    .cta-info i {
      font-size: 1.8rem;
      color: #7CB566;
      margin-right: 12px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background-color: #0A2B44;
      color: #E6EED6;
      padding: 60px 0 20px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .logo-icon-footer {
      background: linear-gradient(135deg, #E6B422, #7CB566);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3rem;
      color: #0A2B44;
      margin-bottom: 16px;
    }
    .social i {
      font-size: 1.4rem;
      margin-right: 20px;
      color: #D4E6B0;
    }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #2C5A7A;
      padding-top: 24px;
      font-size: 0.85rem;
    }

    /* ========== RESPONSIVE: PANTALLAS PEQUEÑAS (max-width: 992px) ========== */
    @media (max-width: 992px) {
      .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      }
      .nav-menu.active {
        left: 0;
      }
      .nav-buttons {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .hero-title {
        font-size: 2.5rem;
      }
      .hero-sub {
        font-size: 1rem;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }

    /* ========== RESPONSIVE: PANTALLAS MUY PEQUEÑAS (hasta 768px) ========== */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }
      .hero {
        padding: 120px 0 60px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .hero-title {
        font-size: 2rem;
      }
      .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-block;
        width: auto;
        text-align: center;
      }
      .hero-image {
        order: -1;
      }
      .stats-bar {
        padding: 32px 0;
      }
      .stat-number {
        font-size: 1.8rem;
      }
      .section-header h2 {
        font-size: 1.8rem;
      }
      .services-grid, .plans-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .history-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .history-gallery {
        flex-direction: column;
      }
      .main-img, .gallery-stack {
        width: 100%;
      }
      .gallery-stack {
        flex-direction: row;
        gap: 12px;
      }
      .key-points {
        grid-template-columns: 1fr;
      }
      .values-grid {
        gap: 20px;
      }
      .value-item {
        flex: 1 1 100%;
      }
      .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
      }
      .cta-text h2 {
        font-size: 1.6rem;
      }
      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }
      .cta-buttons a {
        text-align: center;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .logo-icon-footer {
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* ========== RESPONSIVE: PANTALLAS ENTRE 700px y 900px (vertical) ========== */
    @media (min-width: 700px) and (max-width: 900px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-grid {
        gap: 32px;
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .plans-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Ajustes específicos para altura grande (700x1600) */
    @media (max-width: 800px) and (min-height: 1400px) {
      .hero {
        padding: 100px 0 40px;
      }
      section {
        padding: 50px 0;
      }
    }

  .btn-outline-moss {
      display: inline-flex;
      background-color: #F0E68C;
      border: 2px solid transparent;
      color: var(--verde-musgo);
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.2s;
      align-items: center;
      gap: 8px;
  }
  .btn-outline-moss:hover {
      background-color: var(--verde-musgo);
      color: white;
      transform: translateY(-2px);
  }

      .fullscreen-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .fullscreen-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .enlarged-img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .close-overlay-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        transition: transform 0.2s;
    }

    .close-overlay-btn:hover {
        transform: scale(1.2);
    }