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

    :root {
      --rojo:        #E8192C;
      --rojo-2:      #B5001A;
      --fucsia:      #FF2D78;
      --fucsia-2:    #C4004D;
      --rosa-claro:  #FFE0EC;
      --amarillo:    #FFD43B;
      --dorado:      #E8A020;
      --oscuro:      #1A0008;
      --oscuro-2:    #2A000F;
      --crema:       #FFF5F7;
      --gris-texto:  #1A0008;
      --gris-suave:  #6B3040;
      --blanco:      #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--blanco);
      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: 1rem 6%;
      background: rgba(26,0,8,0.86);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 3px solid var(--rojo);
      transition: box-shadow 0.3s;
    }

    nav.scrolled { box-shadow: 0 4px 30px rgba(232,25,44,0.25); }

    .nav-back {
      font-size: 0.78rem;
      font-weight: 800;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--fucsia); }

    .nav-logo img{max-width: 200px;transition: max-width 0.3s;}
nav.scrolled .nav-logo img{max-width: 120px;}
    .nav-logo span { color: var(--rojo); }

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

    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.65);
      font-weight: 700;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--fucsia); }

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

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 100px 6% 5rem;
      background: var(--oscuro);
    }

    /* Bokeh lights */
    .bokeh {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      pointer-events: none;
    }
    .bokeh-1 { width:350px;height:350px;background:rgba(232,25,44,0.35);top:-80px;right:30%; animation: bokehFloat 9s ease-in-out infinite; }
    .bokeh-2 { width:250px;height:250px;background:rgba(255,45,120,0.25);bottom:100px;left:10%; animation: bokehFloat 12s ease-in-out infinite reverse; }
    .bokeh-3 { width:180px;height:180px;background:rgba(232,160,32,0.2);top:200px;right:5%; animation: bokehFloat 7s ease-in-out infinite 2s; }
    .bokeh-4 { width:120px;height:120px;background:rgba(255,45,120,0.3);top:50%;left:50%; animation: bokehFloat 11s ease-in-out infinite 4s; }

    @keyframes bokehFloat {
      0%,100% { transform: translate(0,0) scale(1); }
      33%      { transform: translate(20px,-30px) scale(1.1); }
      66%      { transform: translate(-15px,20px) scale(0.9); }
    }

    /* Confetti dots */
    .confetti {
      position: absolute;
      width: 6px; height: 6px;
      border-radius: 50%;
      animation: confettiFall linear infinite;
      pointer-events: none;
    }
    @keyframes confettiFall {
      0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.9s ease both;
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: none; }
    }

    .hero-since {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(232,25,44,0.2);
      border: 1px solid rgba(232,25,44,0.4);
      color: var(--fucsia);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      margin-bottom: 1.8rem;
    }

    .hero-brand {
      font-family: 'Anton', sans-serif;
      font-size: clamp(2rem, 7vw, 4rem);
      letter-spacing: 2px;
      line-height: 1;
      color: var(--blanco);
      margin-bottom: 0.5rem;
      text-shadow: 0 0 60px rgba(232,25,44,0.4);
    }

    .hero-brand-sub {
      font-family: 'Lobster', cursive;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--rojo);
      line-height: 0.9;
      margin-bottom: 2rem;
      text-shadow: 0 0 30px rgba(232,25,44,0.5);
    }
    .hero-granadina {max-width: 200px; position: absolute; right: -90px; top: 0; opacity: .1;}
    .hero-tagline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1rem, 2vw, 1.4rem);
      font-style: italic;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      line-height: 1.4;
      margin-bottom: 2.5rem;
      border-left: 4px solid var(--rojo);
      padding-left: 1.2rem;
    }

    .hero-tagline strong { color: var(--fucsia); font-style: normal; }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-rojo {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--rojo);
      color: var(--blanco);
      padding: 1rem 2.2rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 30px rgba(232,25,44,0.4);
    }
    .btn-rojo:hover { background: var(--fucsia); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,45,120,0.5); }

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

    /* Hero image side */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      animation: slideInRight 0.9s 0.2s ease both;
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: none; }
    }

    .hero-img-wrap {
      position: relative;
      max-width: 440px;
      width: 100%;
    }

    .hero-photo {
      width: 100%;
      border-radius: 24px;
      display: block;
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: 0 30px 80px rgba(232,25,44,0.3), 0 0 0 1px rgba(232,25,44,0.15);
    }

    /* Placeholder if no image */
    .hero-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 24px;
      background: linear-gradient(150deg, var(--oscuro-2) 0%, #3D0015 100%);
      border: 1px solid rgba(232,25,44,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .hero-photo-placeholder span { font-size: 5rem; }
    .hero-photo-placeholder p { color: rgba(255,255,255,0.3); font-style: italic; font-size: 0.85rem; text-align: center; }

    /* Floating sticker */
    .sticker {
      position: absolute;
      background: var(--amarillo);
      color: var(--oscuro);
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      letter-spacing: 1px;
      text-align: center;
      padding: 1rem;
      border-radius: 50%;
      width: 100px; height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.1;
      box-shadow: 0 4px 20px rgba(232,160,32,0.4);
      animation: stickerPulse 3s ease-in-out infinite;
    }

    @keyframes stickerPulse {
      0%,100% { transform: rotate(12deg) scale(1); }
      50%      { transform: rotate(12deg) scale(1.08); }
    }

    .sticker-top { top: -15px; right: -15px; }
    .sticker .s-big { font-size: 1.4rem; }
    .sticker .s-small { font-size: 0.55rem; letter-spacing: 1.5px; opacity: 0.8; }

    /* Diagonal bottom */
    .hero-bottom-stripe {
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 100px;
      background: var(--blanco);
      clip-path: polygon(0 100%, 100% 30%, 100% 100%);
    }

    /* ── HISTORIA ─────────────────────────────────────── */
    .historia-section {
      padding: 7rem 6%;
      background: var(--blanco);
    }

    .historia-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

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

    .section-title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 2px;
      line-height: 1;
      color: var(--gris-texto);
      margin-bottom: 1.2rem;
    }

    .section-title span { color: var(--rojo); }

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

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

    /* Year display */
    .year-display {
      display: flex;
      align-items:center;
      gap: 0.5rem;
      margin: .5rem 0;
    }

    .year-num {
      font-family: 'Anton', sans-serif;
      font-size: 6rem;
      line-height: 1;
      color: var(--rojo);
      text-shadow: 3px 3px 0 rgba(232,25,44,0.15);
    }

    .year-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-style: italic;
      font-weight: 700;
      color: var(--gris-suave);
      line-height: 1.3;
    }

    /* Historia image */
    .historia-img {
      position: relative;
    }

    .historia-photo {
      width: 100%;
      border-radius: 24px;
      display: block;
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: 0 20px 60px rgba(232,25,44,0.15);
    }

    .historia-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 24px;
      background: linear-gradient(150deg, #FF2D78 0%, var(--rojo-2) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .historia-photo-placeholder .ph-logo {
      font-family: 'Anton', sans-serif;
      font-size: 3rem;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.9);
    }

    .historia-photo-placeholder .ph-sub {
      font-family: 'Lobster', cursive;
      font-size: 1.8rem;
      color: rgba(255,255,255,0.7);
    }

    .historia-photo-placeholder .ph-img-hint {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
      font-style: italic;
      text-align: center;
      margin-top: 1rem;
    }

    .foto-caption {
      position: absolute;
      bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
      background: rgba(26,0,8,0.85);
      backdrop-filter: blur(10px);
      border-left: 4px solid var(--rojo);
      padding: 1rem 1.2rem;
      border-radius: 0 12px 12px 0;
    }

    .foto-caption p {
      font-family: 'Barlow Condensed', sans-serif;
      font-style: italic;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blanco);
    }

    /* ── USO & COCTELES ───────────────────────────────── */
    .coctel-section {
      padding: 6rem 6%;
      background: var(--oscuro);
      position: relative;
      overflow: hidden;
    }

    .coctel-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(232,25,44,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255,45,120,0.1) 0%, transparent 60%);
    }

    .coctel-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .coctel-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .coctel-header .section-title { color: var(--blanco); }
    .coctel-header .section-eyebrow { color: var(--fucsia); }

    .coctel-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .coctel-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(232,25,44,0.2);
      border-radius: 20px; position:relative;
      padding: 2rem 1.8rem;
      transition: background 0.3s, transform 0.3s; padding-right: 50%;
    }

    .coctel-card:hover {
      background: rgba(232,25,44,0.1);
      transform: translateY(-4px);
    }

    .coctel-ico {position: absolute;  height:100%;object-fit: cover;overflow: hidden; width:45%; top: 0; right: 0; border-radius: 0 20px 20px 0;}
.coctel-ico img {min-width: 100%;flex-shrink: 0; min-height: 100%; height: 100%;}
    .coctel-titulo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--blanco);
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .coctel-ingredientes {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      font-weight: 600;
      margin-bottom: 0.8rem;
      font-style: italic;
    }

    .coctel-desc {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    .coctel-tag {
      display: inline-block;
      margin-top: 1rem;
      background: rgba(232,25,44,0.2);
      border: 1px solid rgba(232,25,44,0.4);
      color: var(--fucsia);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
    }

    /* ── PILARES ──────────────────────────────────────── */
    .pilares-section {
      padding: 5rem 6%;
      background: var(--crema);
    }

    .pilares-header {
      text-align: center;
      margin-bottom: 4rem;
    }

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

    .pilar-card {
      background: var(--blanco);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      text-align: center;
      border: 2px solid transparent;
      transition: border-color 0.3s, transform 0.3s;
    }

    .pilar-card:hover {
      border-color: var(--rojo);
      transform: translateY(-4px);
    }

    .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(--rojo);
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }

    .pilar-desc {
      font-size: 0.88rem;
      color: var(--gris-suave);
      line-height: 1.6;
    }

    /* ── PRESENTACIONES ───────────────────────────────── */
    .pres-section {
      padding: 5rem 6%;
      background: linear-gradient(150deg, var(--rojo-2) 0%, var(--oscuro) 100%);
      position: relative;
      overflow: hidden;
    }

    .pres-section::before {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      background: rgba(255,45,120,0.1);
      border-radius: 50%;
      filter: blur(80px);
      right: -100px; top: -100px;
    }

    .pres-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .pres-inner .section-title { color: var(--blanco); margin-bottom: 0.5rem; }
    .pres-inner .section-eyebrow { color: var(--fucsia); }

    .pres-cards {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 3rem;
    }

    .pres-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      min-width: 180px;
      transition: background 0.3s, transform 0.3s;
    }

    .pres-item:hover {
      background: rgba(232,25,44,0.2);
      transform: translateY(-4px);
    }

    .pres-ico { font-size: 3rem; display: block; margin-bottom: 1rem; }

    .pres-vol {
      font-family: 'Anton', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      color: var(--blanco);
      line-height: 1;
    }

    .pres-unit {
      font-size: 0.8rem;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 0.2rem;
    }

    .pres-label {
      margin-top: 0.8rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--fucsia);
      letter-spacing: 1px;
    }

    /* ── CONTACTO ─────────────────────────────────────── */
    .contacto-section {
      padding: 6rem 6%;
      background: var(--blanco);
    }

    .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; }

    .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(--rosa-claro);
      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(--oscuro);
      padding: 2.5rem 6%;
      border-top: 3px solid var(--rojo);
    }

    .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: 140px;}

    .footer-logo span { color: var(--rojo); }

    .footer-links { display: flex; gap: 2rem; list-style: none; }
    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--fucsia); }

    .footer-bottom {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-copy { color: rgba(255,255,255,0.25); font-size: 0.8rem; font-weight: 600; }
    .footer-preb { color: rgba(232,25,44,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
    .footer-preb:hover { color: var(--rojo); }

    /* ── 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) {
      .hero { grid-template-columns: 1fr; }
      .hero-visual { justify-content: flex-start; margin-top: 3rem; }
      .historia-inner { grid-template-columns: 1fr; gap: 3rem; }
      .coctel-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; }
      .pilares-grid { grid-template-columns: 1fr; }
      .frow { grid-template-columns: 1fr; }
      .coctel-ico img {width: auto; min-width: auto;}
      .coctel-grid { grid-template-columns: 1fr; }
      .pres-cards { flex-direction: column; align-items: center; }
    }