/* ─── Reset & Base ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      color: #2c2c2c;
      background: #fff;
      overflow-x: hidden;
    }

    /* ─── CSS Variables ────────────────────────────────────── */
    :root {
      --teal: #5BBFB9;
      --teal-dark: #3a9e98;
      --teal-light: #e8f8f7;
      --teal-xlight: #f4fbfa;
      --dark: #1a2a29;
      --gray: #555;
      --light-gray: #f7f7f7;
      --white: #fff;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-hover: 0 8px 32px rgba(91,191,185,0.22);
      --transition: all 0.3s ease;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

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

    section { padding: 80px 0; }

    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--gray);
      max-width: 580px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }

    .btn-primary {
      background: var(--teal);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

    .btn-outline {
      background: transparent;
      color: var(--teal);
      border: 2px solid var(--teal);
    }
    .btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

    /* ─── Navbar ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.06);
      transition: var(--transition);
    }

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

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-img {
      height: 44px;
      width: auto;
      border-radius: 8px;
      display: block;
    }
    .logo-footer {
      height: 52px;
      width: auto;
      border-radius: 8px;
      display: block;
      margin-bottom: 16px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      position: relative;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--teal);
      transition: width 0.25s ease;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--teal);
      color: var(--white) !important;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: var(--transition) !important;
    }
    .nav-cta:hover { background: var(--teal-dark) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ─── Hero ─────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
      background: linear-gradient(135deg, #e8f8f7 0%, #f4fbfa 40%, #fff 100%);
    }

    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.06;
    }
    .hero-bg-circle.c1 { width: 600px; height: 600px; top: -200px; right: -100px; }
    .hero-bg-circle.c2 { width: 300px; height: 300px; bottom: -50px; left: -80px; }

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

    .hero-text .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-light);
      color: var(--teal-dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .hero-text h1 span { color: var(--teal); }

    .hero-text p {
      font-size: 17px;
      color: var(--gray);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-photo-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
      width: 100%;
      max-width: 460px;
    }

    .hero-photo-card img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
    }

    .hero-photo-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      border-radius: 14px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    .hero-photo-badge .badge-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--teal-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .hero-photo-badge strong {
      display: block;
      font-size: 13px;
      color: var(--dark);
      font-weight: 600;
    }

    .hero-photo-badge small {
      font-size: 11px;
      color: var(--gray);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
    }

    .stat { text-align: center; }
    .stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      color: var(--teal);
      font-weight: 600;
    }
    .stat .lbl {
      font-size: 12px;
      color: var(--gray);
      font-weight: 500;
      margin-top: 2px;
    }

    /* ─── Servicios ────────────────────────────────────────── */
    #servicios {
      background: var(--light-gray);
    }

    .servicios-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .servicios-header .section-sub { margin: 0 auto; }

    .servicios-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }

    .servicio-card {
      flex: 0 0 calc((100% - 48px) / 3);
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      cursor: default;
      border-bottom: 3px solid transparent;
    }

    .servicio-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-bottom-color: var(--teal);
    }

    .servicio-icon {
      width: 96px;
      height: 96px;
      border-radius: 16px;
      overflow: hidden;
      margin: 0 auto 20px;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(91,191,185,0.22);
    }

    .servicio-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
      transition: transform 0.35s ease;
    }

    .servicio-card:hover .servicio-icon img {
      transform: scale(1.06);
    }

    .servicio-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .servicio-card p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ─── Nosotros ─────────────────────────────────────────── */
    #nosotros .inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .nosotros-visual {
      position: relative;
    }

    .nosotros-img-wrap {
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 60%, #2a7a76 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
    }

    .nosotros-img-wrap .placeholder-text {
      text-align: center;
      color: rgba(255,255,255,0.8);
      padding: 40px;
    }
    .nosotros-img-wrap .placeholder-text span {
      font-size: 64px;
      display: block;
      margin-bottom: 16px;
    }
    .nosotros-img-wrap .placeholder-text p {
      font-size: 14px;
      font-weight: 500;
    }

    .nosotros-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px 24px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nosotros-badge .icon {
      width: 48px;
      height: 48px;
      background: var(--teal-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .nosotros-badge .text strong {
      display: block;
      font-size: 18px;
      color: var(--teal);
      font-weight: 700;
    }
    .nosotros-badge .text small {
      font-size: 12px;
      color: var(--gray);
    }

    .nosotros-content .pillars {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .pillar-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--teal);
      margin-top: 6px;
      flex-shrink: 0;
    }

    .pillar p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.6;
    }

    .pillar p strong { color: var(--dark); }

    /* ─── Carrusel ─────────────────────────────────────────── */
    #galeria {
      background: #f0f2f4;
      overflow: hidden;
    }

    .galeria-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .carousel-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 20px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide {
      min-width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .carousel-slide-inner {
      aspect-ratio: 16/7;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 48px;
      background: var(--white);
      border-top: 5px solid var(--teal);
    }

    .slide-content {
      text-align: center;
      color: var(--dark);
      position: relative;
      z-index: 2;
    }

    .slide-icon-wrap {
      width: 96px;
      height: 96px;
      border-radius: 16px;
      overflow: hidden;
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(91,191,185,0.22);
    }

    .slide-icon-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .slide-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 3vw, 30px);
      margin-bottom: 10px;
      color: var(--dark);
    }

    .slide-content p {
      font-size: 15px;
      color: var(--gray);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .slide-accent-1 .slide-icon-wrap,
    .slide-accent-2 .slide-icon-wrap,
    .slide-accent-3 .slide-icon-wrap,
    .slide-accent-4 .slide-icon-wrap,
    .slide-accent-5 .slide-icon-wrap { background: var(--teal-light); }

    .slide-accent-1, .slide-accent-2, .slide-accent-3,
    .slide-accent-4, .slide-accent-5 { border-top-color: var(--teal); }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
    }

    .carousel-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--teal);
      background: var(--white);
      color: var(--teal);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .carousel-btn:hover { background: var(--teal); color: var(--white); }

    .carousel-dots {
      display: flex;
      gap: 8px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.3;
      cursor: pointer;
      transition: var(--transition);
    }
    .carousel-dot.active { opacity: 1; width: 24px; border-radius: 4px; }

    /* ─── Tips / Noticias ──────────────────────────────────── */
    #consejos {
      background: var(--white);
    }

    .consejos-header {
      margin-bottom: 48px;
    }

    .consejos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .consejo-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
    }
    .consejo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

    .consejo-img {
      height: 180px;
      overflow: hidden;
      display: block;
    }

    .consejo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
      transition: transform 0.4s ease;
    }

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

    .consejo-img.c1 { background: linear-gradient(135deg, #e8f8f7, #c8efed); }
    .consejo-img.c2 { background: linear-gradient(135deg, #e8f0f8, #c8d8ef); }
    .consejo-img.c3 { background: linear-gradient(135deg, #f0f8e8, #d8efc8); }

    .consejo-body { padding: 24px; }

    .consejo-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 8px;
    }

    .consejo-body h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .consejo-body p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ─── Ubicación ────────────────────────────────────────── */
    #ubicacion {
      background: var(--teal-xlight);
    }

    .ubicacion-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .ubicacion-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .info-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(91,191,185,0.2);
    }

    .info-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .info-text strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--teal-dark);
      margin-bottom: 4px;
    }

    .info-text p, .info-text a {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.6;
      transition: color 0.2s;
    }
    .info-text a:hover { color: var(--teal); }

    .map-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 360px;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: var(--white);
      padding: 14px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: var(--transition);
      margin-top: 8px;
    }
    .whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

    /* ─── Footer ───────────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      padding: 48px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }

    /* footer logo handled by .logo-circle--lg */

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 18px;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--teal); }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 24px;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p { font-size: 13px; }
    .footer-bottom span { color: var(--teal); }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: var(--transition);
    }
    .social-link:hover { background: var(--teal); }

    /* ─── Floating WhatsApp ────────────────────────────────── */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.45);
      z-index: 999;
      transition: var(--transition);
      animation: pulse-wa 2.5s ease-in-out infinite;
    }
    .float-wa:hover { transform: scale(1.1); background: #1ebe5d; }
    .float-wa svg { width: 30px; height: 30px; fill: white; }

    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
    }

    /* ─── Galería de fotos (strip) ─────────────────────────── */
    .fotos-strip {
      padding: 0;
      line-height: 0;
    }

    .fotos-strip-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .fotos-strip-grid .foto-item {
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .fotos-strip-grid .foto-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .fotos-strip-grid .foto-item:hover img {
      transform: scale(1.04);
    }

    /* ─── Video section ─────────────────────────────────────── */
    #video-renova {
      background: var(--dark);
      padding: 80px 0;
    }

    .video-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .video-header .section-label { color: var(--teal); }
    .video-header .section-title { color: var(--white); }

    .video-wrap {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    }

    .video-wrap video {
      width: 100%;
      display: block;
      max-height: 560px;
      object-fit: cover;
      background: #000;
    }

    /* ─── Horarios ──────────────────────────────────────────── */
    #horarios {
      background: var(--light-gray);
    }

    .horarios-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .horarios-header .section-sub { margin: 0 auto; }

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

    .horario-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-top: 4px solid var(--teal);
      display: flex;
      flex-direction: column;
    }

    .horario-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .horario-icon {
      width: 72px;
      height: 72px;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 18px;
      box-shadow: 0 4px 14px rgba(91,191,185,0.2);
    }

    .horario-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .horario-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .horario-row {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }

    .horario-row:last-of-type { margin-bottom: 0; }

    .horario-days {
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-dark);
    }

    .horario-time {
      font-size: 14px;
      color: var(--gray);
    }

    .horario-note {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      padding-top: 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--teal-dark);
      border-top: 1px solid #e8f4f3;
    }

    .horario-note::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    /* ─── Responsive – tablet (≤900px) ────────────────────── */
    @media (max-width: 900px) {
      /* Hero */
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
      .hero-text p { margin: 0 auto 32px; }
      .hero-actions { justify-content: center; }
      .hero-visual { order: -1; }
      .hero-stats { justify-content: center; }
      .hero-photo-card { max-width: 480px; margin: 0 auto; }
      .hero-photo-card img { height: 300px; }

      /* Servicios – 2 por fila */
      .servicio-card { flex: 0 0 calc((100% - 24px) / 2); }
      .horarios-grid { grid-template-columns: 1fr; gap: 20px; }

      /* Nosotros */
      #nosotros .inner { grid-template-columns: 1fr; gap: 48px; }
      .nosotros-visual { max-width: 520px; margin: 0 auto; width: 100%; }
      .nosotros-badge { right: 0; bottom: -16px; }

      /* Ubicación */
      .ubicacion-inner { grid-template-columns: 1fr; gap: 40px; }
      .map-wrap { height: 300px; }

      /* Carrusel */
      .carousel-slide-inner { aspect-ratio: unset; min-height: 240px; padding: 36px 24px; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: 1 / -1; }
    }

    /* ─── Responsive – móvil (≤640px) ──────────────────────── */
    @media (max-width: 640px) {
      section { padding: 56px 0; }

      /* Nav */
      .nav-links { display: none; flex-direction: column; gap: 0; }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        padding: 12px 24px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
      }
      .nav-links.open a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        width: 100%;
        font-size: 15px;
      }
      .nav-links.open a:last-child { border: none; }
      .nav-links.open .nav-cta {
        background: var(--teal);
        color: var(--white) !important;
        padding: 12px 20px;
        border-radius: 50px;
        text-align: center;
        margin: 8px 0 4px;
        border-bottom: none !important;
        display: inline-block;
        width: auto;
        align-self: flex-start;
      }
      .hamburger { display: flex; }

      /* Hero */
      .hero-photo-card img { height: 240px; }
      .hero-photo-badge { left: 12px; bottom: 12px; padding: 10px 14px; }
      .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions .btn { width: 100%; justify-content: center; }

      /* Servicios – 1 por fila en móvil pequeño */
      .servicio-card { flex: 0 0 100%; }

      /* Fotos strip – 1 columna */
      .fotos-strip-grid { grid-template-columns: 1fr; gap: 3px; }
      .fotos-strip-grid .foto-item { aspect-ratio: 16/9; }

      /* Nosotros */
      .nosotros-img-wrap { aspect-ratio: 16/10; }
      .nosotros-badge { position: static; margin-top: 16px; width: 100%; }

      /* Carrusel */
      .carousel-slide-inner { min-height: 200px; padding: 28px 20px; }
      .slide-icon-wrap { width: 60px; height: 60px; font-size: 28px; }
      .carousel-wrapper { max-width: 100%; }

      /* Consejos */
      .consejos-grid { grid-template-columns: 1fr; }

      /* Ubicación */
      .map-wrap { height: 260px; }
      .whatsapp-btn { width: 100%; justify-content: center; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
      .social-links { justify-content: center; }

      /* WhatsApp flotante */
      .float-wa { width: 52px; height: 52px; bottom: 20px; right: 20px; }
      .float-wa svg { width: 26px; height: 26px; }
    }

    /* ─── Responsive – móvil muy pequeño (≤380px) ───────────── */
    @media (max-width: 380px) {
      .container { padding: 0 16px; }
      .hero-text h1 { font-size: 30px; }
      .section-title { font-size: 24px; }
      .servicio-card { padding: 28px 20px; }
    }

    /* ─── Scroll animations ────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }