    @import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');
    
    :root {
      --primary: #ff4fa1;
      --secondary: #ffb703;
      --accent: #7b2cbf;
      --green: #25d366;
      --dark: #2c2c2c;
      --text: #4a4a4a;
      --light: #fff8fc;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 22px;
      --container: 1200px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Fredoka', Arial, sans-serif;
    }

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

    a {
      text-decoration: none;
    }

    .container {
      width: min(92%, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      font-size: clamp(1.9rem, 2.8vw, 2.8rem);
      color: var(--dark);
      text-align: center;
      margin-bottom: 14px;
    }

    .section-subtitle {
      max-width: 700px;
      margin: 0 auto 40px;
      text-align: center;
      font-size: 1.05rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 0;
      cursor: pointer;
    }

    .btn-whatsapp {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    }

    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(37, 211, 102, 0.32);
    }

    .btn-outline {
      background: var(--white);
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: 0.25s ease;
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .header-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 84px;
      gap: 20px;
      position: relative;
      transition: 0.25s ease;
    }

    .site-header.scrolled .header-wrap {
      min-height: 68px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo img {
      height: 56px;
      width: auto;
      transition: 0.25s ease;
      filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
    }

    .site-header.scrolled .logo img {
      height: 44px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-left: auto;
      margin-right: 8px;
    }

    .nav a {
      color: var(--dark);
      font-weight: 700;
      font-size: 0.98rem;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: 0;
      font-size: 1.8rem;
      color: var(--dark);
      cursor: pointer;
      line-height: 1;
    }

    .hero {
      padding: 70px 0 40px;
    }

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

    .hero-copy h1 {
      font-size: clamp(2.2rem, 4.4vw, 4.4rem);
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .hero-copy p {
      font-size: 1.08rem;
      margin-bottom: 28px;
      max-width: 560px;
    }

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

    .hero-image {
      position: relative;
    }

    .hero-card {
      position: relative;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 500px;
      background: linear-gradient(135deg, #ffd2e8, #ffe9a8 55%, #ead7ff);
    }

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

    .hero-bubble {
      position: absolute;
      background: var(--white);
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: var(--shadow);
      font-weight: 700;
      color: var(--dark);
    }

    .bubble-one {
      top: 20px;
      right: -10px;
    }

    .bubble-two {
      bottom: 24px;
      left: -12px;
    }

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

    .card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card-media {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #f9f9f9;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .card:hover .card-media img {
      transform: scale(1.04);
    }

    .card-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-grow: 1;
    }

    .card-body h3 {
      font-size: 1.18rem;
      color: var(--dark);
    }

    .card-body p {
      font-size: 0.96rem;
      flex-grow: 1;
    }

    .combo-section {
      background: linear-gradient(180deg, #fff8fc 0%, #fff3c4 100%);
    }

    .banner {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 34px;
      padding: 42px;
      color: var(--white);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: center;
    }

    .banner h2 {
      font-size: clamp(1.8rem, 3vw, 3rem);
      margin-bottom: 14px;
    }

    .banner p {
      margin-bottom: 18px;
      max-width: 600px;
    }

    .banner-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 700;
      font-size: 0.95rem;
    }

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

    .theme-card {
      position: relative;
      min-height: 420px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      align-items: end;
    }

    .theme-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .theme-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.68) 100%);
    }

    .theme-content {
      position: relative;
      z-index: 2;
      color: var(--white);
      padding: 26px;
      width: 100%;
    }

    .theme-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .theme-content p {
      margin-bottom: 16px;
      color: rgba(255,255,255,0.92);
    }

    .contact-box {
      background: linear-gradient(135deg, #fff0f7, #ffffff);
      border-radius: 30px;
      padding: 50px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .contact-box h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--dark);
      margin-bottom: 14px;
    }

    .contact-info {
      display: grid;
      gap: 16px;
    }

    .info-item {
      background: var(--white);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .info-item strong {
      color: var(--dark);
      display: block;
      margin-bottom: 4px;
    }

    .site-footer {
      padding: 28px 0;
      border-top: 1px solid rgba(0,0,0,0.06);
      background: var(--white);
    }

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

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-links a {
      color: var(--text);
      font-weight: 700;
    }

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

      .theme-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid,
      .banner,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .hero-card {
        min-height: 380px;
      }
    }

    @media (max-width: 920px) {
      .header-cta {
        display: none;
      }

      .nav {
        gap: 16px;
      }
    }

    @media (max-width: 820px) {
      .menu-toggle {
        display: inline-block;
        margin-left: auto;
      }

      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding: 18px 4%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      }

      .nav.active {
        display: flex;
      }

      .section {
        padding: 64px 0;
      }

      .banner,
      .contact-box {
        padding: 30px;
      }

      .header-wrap {
        min-height: 76px;
      }

      .site-header.scrolled .header-wrap {
        min-height: 64px;
      }

      .logo img {
        height: 48px;
      }

      .site-header.scrolled .logo img {
        height: 40px;
      }
    }

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

      .hero {
        padding-top: 40px;
      }

      .hero-card {
        min-height: 320px;
      }

      .hero-bubble {
        font-size: 0.9rem;
        padding: 10px 14px;
      }

      .bubble-one {
        right: 10px;
      }

      .bubble-two {
        left: 10px;
      }

      .contact-box,
      .banner {
        border-radius: 24px;
      }

      .logo img {
        height: 42px;
      }

      .site-header.scrolled .logo img {
        height: 36px;
      }
    }

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
#ubicacion {
  background: linear-gradient(180deg, #fff8fc 0%, #ffffff 100%);
}