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

  :root {
    --forest: #0D2B4E;
    --moss: #1A4A7A;
    --sage: #5BA3C9;
    --cream: #EEF5FB;
    --warm-white: #F5F9FC;
    --earth: #2E7D9E;
    --sand: #B8D4E8;
    --charcoal: #0A1E35;
    --text-muted: #4A6B85;
    --accent: #2196C4;
    --green-leaf: #3A8A5C;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(28, 36, 28, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
  }
  .nav-logo-img-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-logo-img-wrap img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    object-position: center 30%;
    margin-top: -4px;
  }
  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .nav-logo-text small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(245,240,232,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cream); }

  .nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    letter-spacing: 0.06em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #1878a8 !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,20,50,0.92) 0%,
      rgba(10,20,50,0.65) 45%,
      rgba(10,20,50,0.35) 100%
    );
  }

  .hero-content {
    position: relative;
    padding: 0 3rem 5rem;
    max-width: 720px;
    animation: fadeUp 1s ease both;
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.4rem;
  }

  .hero p {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.8);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 540px;
  }

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

  .btn-primary {
    background: var(--accent);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #1878a8; transform: translateY(-1px); }

  .btn-outline {
    border: 1px solid rgba(245,240,232,0.5);
    color: var(--cream);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--forest);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .stat-item {
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
  }

  /* ── SECTIONS ── */
  section { padding: 5rem 3rem; }

  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-leaf);
    font-weight: 500;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
  }

  /* ── SERVICES ── */
  .services { background: var(--cream); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem;
    background: var(--sand);
  }

  .service-card {
    background: var(--warm-white);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .service-card:hover { transform: scale(1.01); z-index: 2; }

  .service-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    filter: saturate(0.85);
  }
  .service-card:hover .service-img { transform: scale(1.04); }

  .service-body {
    padding: 1.8rem;
  }

  .service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .service-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.7rem; color: var(--moss); }

  /* ── BONOS ── */
  .bonos { background: var(--warm-white); }

  .bonos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .bono-card {
    border: 1.5px solid var(--sand);
    border-radius: 4px;
    padding: 2.2rem;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
  }
  .bono-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(193,126,59,0.1);
  }

  .bono-card.featured {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--cream);
  }

  .bono-badge {
    position: absolute;
    top: -1px; right: 1.5rem;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }

  .bono-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .bono-card.featured .bono-name { color: var(--cream); }

  .bono-price {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin: 1rem 0 0.2rem;
  }
  .bono-vat {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  .bono-card.featured .bono-vat { color: var(--sage); }

  .bono-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  .bono-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .bono-card.featured .bono-features li {
    color: rgba(245,240,232,0.75);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .bono-features li::before {
    content: '';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
  }

  .bono-btn {
    display: block;
    text-align: center;
    padding: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    transition: all 0.2s;
  }
  .bono-btn-outline {
    border: 1.5px solid var(--forest);
    color: var(--forest);
  }
  .bono-btn-outline:hover { background: var(--forest); color: white; }
  .bono-btn-solid {
    background: var(--accent);
    color: white;
    border: 1.5px solid var(--accent);
  }
  .bono-btn-solid:hover { background: #1878a8; }

  /* ── PRODUCTOS ── */
  .productos { background: var(--cream); }

  .productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .producto-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .producto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }

  .producto-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: var(--cream);
    padding: 1rem;
  }

  .producto-body {
    padding: 1rem 1.2rem 1.4rem;
  }

  .producto-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }

  .producto-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* ── FOTO FULLBLEED ── */
  .fullbleed {
    position: relative;
    height: 50vh;
    min-height: 360px;
    overflow: hidden;
  }
  .fullbleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
  }
  .fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,28,20,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .fullbleed-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .fullbleed-overlay p {
    color: rgba(245,240,232,0.8);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 1.8rem;
    line-height: 1.7;
  }

  /* ── CONTACTO ── */
  .contacto {
    background: var(--forest);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .contacto-info {
    padding: 5rem 3.5rem;
  }

  .contacto-info .section-tag { color: var(--sage); }
  .contacto-info .section-title { color: var(--cream); }

  .contacto-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .contacto-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
  }

  .contacto-item-text p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.2rem;
  }
  .contacto-item-text a,
  .contacto-item-text span {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
  }
  .contacto-item-text a:hover { color: var(--accent); }

  .social-row {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
  }
  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--cream);
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    transition: border-color 0.2s, background 0.2s;
  }
  .social-btn:hover { border-color: var(--accent); background: rgba(193,126,59,0.12); }

  .contacto-map {
    position: relative;
    background: var(--moss);
  }
  .contacto-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.6) brightness(0.85);
    min-height: 400px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  footer .logo {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.7;
  }
  footer .logo span { color: var(--sage); }

  footer p {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.35);
    letter-spacing: 0.04em;
  }

  /* ── DISTRIBUIDOR ── */
  .distribuidores {
    background: var(--warm-white);
    text-align: center;
  }
  .distribuidores-img {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: block;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--sand);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 3.5rem 1.5rem; }
    .hero-content { padding: 0 1.5rem 3rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .contacto { grid-template-columns: 1fr; }
    .contacto-map { display: none; }
    footer { flex-direction: column; text-align: center; }
    .bonos-header { flex-direction: column; align-items: flex-start; }
  }

  

  /* ─── PÁGINA INTERNA ─── */


  /* ── SUBPÁGINAS ── */
  .sp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background: var(--warm-white);
    overflow-y: scroll;
    scroll-behavior: auto;
  }
  .sp.open { display: block; }

  .sp-bar {
    position: sticky; top: 0; z-index: 10;
    background: var(--forest);
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .sp-back {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--cream);
    font-family: 'DM Sans',sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: border-color .2s, background .2s;
  }
  .sp-back:hover { border-color: var(--cream); background: rgba(255,255,255,.07); }
  .sp-brand {
    font-family: 'Playfair Display',serif;
    color: var(--cream); font-size: .9rem; opacity: .5;
  }

  .sp-hero {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 400px;
  }
  .sp-hero-img {
    width: 100%; height: 100%; min-height: 320px;
    object-fit: cover; display: block; filter: saturate(.85);
  }
  .sp-hero-info {
    background: var(--forest); padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .sp-etiqueta {
    font-size: .72rem; letter-spacing: .16em;
    text-transform: uppercase; color: var(--sage); margin-bottom: .7rem;
  }
  .sp-titulo {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.7rem,3vw,2.3rem);
    color: var(--cream); line-height: 1.15; margin-bottom: .7rem;
  }
  .sp-claim {
    font-size: .88rem; color: rgba(245,240,232,.6);
    line-height: 1.65; font-style: italic; margin-bottom: 1.5rem;
  }
  .sp-precio {
    font-family: 'Playfair Display',serif;
    font-size: 2.1rem; color: var(--accent);
    line-height: 1; margin-bottom: .3rem;
  }
  .sp-precio-nota {
    font-size: .78rem; color: rgba(245,240,232,.45); margin-bottom: 2rem;
  }
  .sp-cta-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent); color: #ffffff !important; border: none;
    padding: .95rem 1.8rem; border-radius: 2px;
    font-family: 'DM Sans',sans-serif; font-size: .88rem; font-weight: 500;
    cursor: pointer; letter-spacing: .05em; transition: background .2s;
    align-self: flex-start; white-space: nowrap;
  }
  .sp-cta-btn:hover { background: #1878a8; color: #ffffff !important; }

  .sp-body { max-width: 820px; margin: 0 auto; padding: 4rem 2.5rem 5rem; }

  .sp-h2 {
    font-family: 'Playfair Display',serif; font-size: 1.2rem;
    color: var(--charcoal); margin-bottom: 1rem;
    padding-bottom: .5rem; border-bottom: 2px solid var(--sand);
  }
  .sp-p {
    font-size: .93rem; color: var(--text-muted);
    line-height: 1.85; margin-bottom: 2.5rem;
  }
  .sp-lista {
    list-style: none; display: flex; flex-direction: column;
    gap: .9rem; margin-bottom: 3rem;
  }
  .sp-lista li {
    display: flex; gap: 1rem;
    font-size: .9rem; line-height: 1.6; color: var(--charcoal);
  }
  .sp-lista li::before {
    content: ''; width: 7px; height: 7px; min-width: 7px;
    border-radius: 50%; background: var(--accent); margin-top: .5rem;
  }
  .sp-box {
    background: var(--forest); border-radius: 4px;
    padding: 2.2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .sp-box h3 {
    font-family: 'Playfair Display',serif; font-size: 1.2rem;
    color: var(--cream); margin-bottom: .3rem;
  }
  .sp-box p { font-size: .83rem; color: rgba(245,240,232,.55); line-height: 1.5; max-width: 360px; }

  @media(max-width:768px){
    .sp-hero { grid-template-columns: 1fr; }
    .sp-hero-info { padding: 2rem 1.5rem; }
    .sp-body { padding: 2.5rem 1.5rem 4rem; }
    .sp-bar { padding: 1rem 1.5rem; }
    .sp-box { flex-direction: column; }
  }


  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,20,50,0.72);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .modal-overlay.active { display: flex; }

  .modal-box {
    background: white;
    border-radius: 6px;
    padding: 2.2rem 2.5rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: fadeUp 0.25s ease both;
  }

  .modal-cerrar {
    position: absolute;
    top: 1rem; right: 1.2rem;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.15s;
  }
  .modal-cerrar:hover { color: var(--charcoal); }

  .modal-etiqueta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-leaf, #3A8A5C);
    font-weight: 500;
    margin-bottom: 0.4rem;
  }

  .modal-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .modal-texto {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .modal-opciones {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }

  .modal-opcion {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--sand, #B8D4E8);
    border-radius: 4px;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
  }
  .modal-opcion:hover {
    border-color: var(--accent);
    background: rgba(33,150,196,0.04);
    color: var(--charcoal);
  }

  .modal-opcion-icono {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream, #EEF5FB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .modal-opcion div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .modal-opcion small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
  }

  .modal-nota {
    font-size: 0.77rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
  }