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

  :root {
    /* Agua */
    --agua-1: #0AAEDF;
    --agua-2: #0880AA;
    --agua-3: #E0F6FD;
    /* Naranja */
    --naranja-1: #FF8C00;
    --naranja-2: #E65C00;
    /* Limón */
    --limon-1: #C8E000;
    --limon-2: #8FA800;
    /* Ananá */
    --anana-1: #FFD700;
    --anana-2: #D4A800;
    /* Durazno */
    --durazno-1: #FF6B6B;
    --durazno-2: #C84B4B;
    /* Pomelo */
    --pomelo-1: #FF4E50;
    --pomelo-2: #C0272A;
    /* Granadina */
    --granadina-1: #C0392B;
    --granadina-2: #8B1A1A;
    /* Mix */
    --mix-1: #9B59B6;
    --mix-2: #6C3483;

    --blanco: #FFFFFF;
    --gris-texto: #222;
    --gris-suave: #555;
    --hero-from: var(--agua-1);
    --hero-to: var(--agua-2);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Nunito', sans-serif;
    background: #fff;
    color: var(--gris-texto);
    overflow-x: hidden;
  }

  /* ── NAV ──────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s,
  }

  nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }

  .nav-logo img {
    max-width: 125px;
    transition: max-width 0.3s
  }

  nav.scrolled .nav-logo img {
    max-width: 95px;
  }

  .nav-back {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gris-suave);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    letter-spacing: 0.3px;
  }

  .nav-back:hover {
    opacity: 1;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--gris-texto);
    font-weight: 700;
    font-size: 0.88rem;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--agua-1);
  }

  .nav-cta {
    background: var(--agua-1) !important;
    color: var(--blanco) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  /* ── HERO ─────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    position: relative;
    transition: background 0.7s ease;
  }

  .hero video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
  }

  /* Bubbles */
  .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: rise linear infinite;
  }

  @keyframes rise {
    0% {
      transform: translateY(110vh) scale(0.5);
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    90% {
      opacity: 0.5;
    }

    100% {
      transform: translateY(-20vh) scale(1.2);
      opacity: 0;
    }
  }

  /* Wave at bottom */
  .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
  }

  .hero-wave svg {
    display: block;
  }

  .hero-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 6% 5rem;
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--blanco);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.2s both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  .hero-logo {
    font-family: 'Barlow Condensed', cursive;
    font-size: clamp(3rem, 8vw, 6rem); font-weight: 800;
    color: var(--blanco);
    line-height: 1;
    text-shadow:
      4px 4px 0 rgba(0, 0, 0, 0.15),
      0 0 40px rgba(255, 255, 255, 0.2);
    animation: fadeUp 1s 0.4s both;
    margin-bottom: 0.3rem;
  }

  .hero-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.7rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.6s both;
  }

  /* Flavor selector */
  .flavor-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.8s both;
  }

  .flavor-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--blanco);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
  }

  .flavor-btn:hover,
  .flavor-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gris-texto);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 1s both;
  }

  .btn-blanco {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blanco);
    color: var(--agua-2);
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

  .btn-blanco:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  }

  .btn-outline-blanco {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--blanco);
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2.5px solid rgba(255, 255, 255, 0.7);
    transition: all 0.25s;
  }

  .btn-outline-blanco:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
  }

  /* ── SECCIÓN AGUA ─────────────────────────────────── */
  .linea-section {
    padding: 6rem 6%;
  }

  .linea-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .two-col.reverse>*:first-child {
    order: 2;
  }

  .two-col.reverse>*:last-child {
    order: 1;
  }

  .section-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Barlow Condensed', cursive;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gris-suave);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .section-body strong {
    color: var(--gris-texto);
  }

  /* Presentaciones */
  .presentaciones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .pres-card {
    border-radius: 14px;
    padding: 1rem 1.4rem;
    text-align: center;
    flex: 1;
    min-width: 100px;
  }

  .pres-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.4rem;
  }

  .pres-title {
    font-weight: 900;
    font-size: 1.1rem;
  }

  .pres-sub {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.7;
  }

  /* Agua card */
  .agua-pres {
    background: var(--agua-3);
  }

  .agua-pres .pres-title {
    color: var(--agua-2);
  }

  /* Jugo card */
  .jugo-pres {
    background: #FFF3E0;
  }

  .jugo-pres .pres-title {
    color: var(--naranja-2);
  }

  /* Visual frames */
  .visual-frame {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

.botellas img {width: 100%;}
  .visual-agua {
    background: linear-gradient(150deg, var(--agua-1) 0%, var(--agua-2) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }

  .visual-jugos {
    background: linear-gradient(150deg, #FF8C00 0%, #E65C00 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }

  .visual-logo {
    font-family: 'Barlow Condensed', cursive;
    color: var(--blanco);
    font-size: 4rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 0.5rem;
  }

  .visual-sublabel {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
  }

  .visual-bignum {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--blanco);
    line-height: 1;
  }

  .visual-bigunit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
  }

  .visual-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--blanco);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .badge-agua {
    color: var(--agua-2);
  }

  .badge-jugos {
    color: var(--naranja-2);
  }

  /* ── SABORES GRID ─────────────────────────────────── */
  .sabores-section {
    padding: 5rem 6%;
    background: #F8FBFF;
  }

  .sabores-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .sabores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sabor-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }

  .sabor-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }

  .sabor-top {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
  }

  .sabor-body {
    padding: 1rem 1.2rem 1.4rem;
    background: var(--blanco);
  }

  .sabor-nombre {
    font-family: 'Barlow Condensed', cursive;
    font-size: 1.8rem; color: #fff; text-shadow: 0 0 12px rgba(0,0,0,.2);
  }

  .sabor-rinde {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gris-suave);
  }

  .sabor-pres {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  .pres-pill {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    opacity: 0.85;
  }

  /* Colores por sabor */
  .s-naranja .sabor-top {
    background: linear-gradient(135deg, #FF8C00, #FFB347);
  }
  .s-naranja .pres-pill {
    background: #FFF3E0;
    color: var(--naranja-2);
  }

  .s-limon .sabor-top {
    background: linear-gradient(135deg, #C8E000, #E8F500);
  }

  .s-limon .pres-pill {
    background: #F9FFD0;
    color: var(--limon-2);
  }

  .s-anana .sabor-top {
    background: linear-gradient(135deg, #FFD700, #FFE55C);
  }

  .s-anana .pres-pill {
    background: #FFFBE0;
    color: var(--anana-2);
  }

  .s-durazno .sabor-top {
    background: linear-gradient(135deg, #FF6B6B, #FF9B7A);
  }

  .s-durazno .pres-pill {
    background: #FFE8E8;
    color: var(--durazno-2);
  }

  .s-granadina .sabor-top {
    background: linear-gradient(135deg, #C0392B, #E74C3C);
  }


  .s-granadina .pres-pill {
    background: #FFE5E5;
    color: var(--granadina-2);
  }

  .s-pomelo .sabor-top {
    background: linear-gradient(135deg, #FF4E50, #FC913A);
  }

  .s-pomelo .pres-pill {
    background: #FFE8E0;
    color: var(--pomelo-2);
  }

  .s-mix .sabor-top {
    background: linear-gradient(135deg, #9B59B6, #3498DB, #2ECC71);
  }


  .s-mix .pres-pill {
    background: #F0E6FF;
    color: var(--mix-2);
  }

  .s-agua .sabor-top {
    background: linear-gradient(135deg, var(--agua-1), #5DD4F5);
  }

  .s-agua .pres-pill {
    background: var(--agua-3);
    color: var(--agua-2);
  }

  /* ── PILARES ──────────────────────────────────────── */
  .pilares-section {
    padding: 5rem 6%;
    background: linear-gradient(150deg, var(--agua-1) 0%, var(--agua-2) 100%);
    position: relative;
    overflow: hidden;
  }

  .pilares-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -200px;
    right: -100px;
  }

  .pilares-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
  }

  .pilares-header .section-eyebrow {
    color: rgba(255, 255, 255, 0.75);
  }

  .pilares-header .section-title {
    color: var(--blanco);
  }

  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .pilar-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
  }

  .pilar-card:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .pilar-ico {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .pilar-titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--blanco);
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
  }

  .pilar-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
  }

  /* ── CONTACTO ─────────────────────────────────────── */
  .contacto-section {
    padding: 6rem 6%;
  }

  .contacto-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contacto-left .section-title {
    margin-bottom: 1rem;
    color: var(--agua-2);
  }

  .contacto-left p {
    color: var(--gris-suave);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--blanco);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }

  .wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
  }

  .wa-svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
  }

  .dato-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
    color: var(--gris-suave);
    font-size: 0.92rem;
    font-weight: 600;
  }

  .dato-ico {
    width: 36px;
    height: 36px;
    background: var(--agua-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .whatsapp-btn {
      position: fixed; width: 56px; height: 56px;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background: #25D366;
      color: #fff;
      padding: 13px 0; z-index: 10000;
      border-radius: 50px; text-align: center;
      bottom: 10px; right: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    }
    .whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

    .whatsapp-icon {
      width: 30px; height: 30px;
      fill: #fff;
    }

  /* ── FOOTER ───────────────────────────────────────── */
  footer {
    background: var(--agua-2);
    padding: 2.5rem 6%;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo img{max-width: 100px;  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--blanco);
  }

  .footer-copy {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
  }

  /* ── REVEAL ───────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── RESPONSIVE ───────────────────────────────────── */
  @media (max-width: 960px) {
    .two-col {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .two-col.reverse>* {
      order: unset;
    }

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

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

    .contacto-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  @media (max-width: 600px) {
    .nav-links {
      display: none;
    }

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

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

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