/* Outfit + Playfair Display se cargan desde index.html con <link rel="stylesheet">
   (en vez de @import) para que el navegador los descargue en paralelo y no
   bloqueen el renderizado del resto del CSS. */

/* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --plum:      #1C1020;
      --plum-mid:  #2D1B3D;
      --rose:      #C87DA0;
      --rose-light:#E8B4CC;
      --cream:     #FAF0E8;
      --cream-2:   #F2E8DC;
      --gold:      #C9A96E;
      --gold-light:#E8D4A8;
      --lavender:  #9B7BC2;
      --teal:      #4A8FA8;
      --white:     #FFFFFF;
      --text-dark: #1A0F1E;
      --text-mid:  #3D2B4A;
      --text-light:#7A6080;

      --ff-serif: 'Playfair Display', 'Georgia', serif;
      --ff-display: 'Playfair Display', serif;
      --ff-sans: 'Outfit', system-ui, -apple-system, sans-serif;

      --r-sm: 8px;
      --r-md: 16px;
      --r-lg: 32px;
      --r-full: 9999px;

      --shadow-sm: 0 2px 8px rgba(28,16,32,.15);
      --shadow-md: 0 8px 32px rgba(28,16,32,.25);
      --shadow-lg: 0 24px 64px rgba(28,16,32,.35);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-sans);
      background: var(--plum);
      color: var(--cream);
      line-height: 1.7;
      overflow-x: hidden;
    }

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

    /* ── Typography ── */
    h1, h2, h3, h4 {
      font-family: var(--ff-serif);
      line-height: 1.2;
      letter-spacing: -.02em;
    }

    .section-label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .85rem 2rem;
      border-radius: var(--r-full);
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      border: none;
      transition: all .25s ease;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--rose), var(--lavender));
      color: var(--white);
      box-shadow: 0 4px 20px rgba(200,125,160,.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,125,160,.55);
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1.5px solid rgba(250,240,232,.3);
    }
    .btn-outline:hover {
      background: rgba(250,240,232,.1);
      border-color: rgba(250,240,232,.6);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), #A87F4E);
      color: var(--plum);
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(201,169,110,.35);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201,169,110,.5);
    }

    .btn-ig {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: white;
      box-shadow: 0 4px 20px rgba(131,58,180,.4);
    }
    .btn-ig:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(131,58,180,.55);
    }

    /* ── Layout ── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section { padding: 6rem 0; }

    /* ── Decorative elements ── */
    .sparkle {
      display: inline-block;
      color: var(--gold);
      animation: sparkle 2s ease-in-out infinite;
    }
    @keyframes sparkle {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .7; transform: scale(1.2); }
    }

    /* ════════════════════════════════
       NAV
    ════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1rem 0;
      transition: background .3s, backdrop-filter .3s;
    }
    nav.scrolled {
      background: rgba(28,16,32,.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,125,160,.15);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav-logo {
      font-family: var(--ff-serif);
      font-size: 1rem;
      color: var(--rose-light);
      letter-spacing: .12em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .nav-logo span {
      color: var(--gold);
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: none;
      font-style: italic;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .87rem;
      color: rgba(250,240,232,.7);
      transition: color .2s;
      letter-spacing: .04em;
    }
    .nav-links a:hover { color: var(--rose-light); }
    .nav-cta { margin-left: 1rem; }

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

    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 3rem 0 4rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(155,123,194,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(200,125,160,.15) 0%, transparent 55%),
        linear-gradient(160deg, var(--plum) 0%, #150D20 50%, #0D0814 100%);
    }

    .hero-bg-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(200,125,160,.12) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-right: 3rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(200,125,160,.15);
      border: 1px solid rgba(200,125,160,.3);
      border-radius: var(--r-full);
      padding: .4rem 1rem;
      font-size: .8rem;
      color: var(--rose-light);
      margin-bottom: 1.5rem;
      letter-spacing: .06em;
    }

    .hero-tagline {
      font-family: var(--ff-serif);
      font-size: clamp(.85rem, 1.5vw, 1rem);
      color: rgba(200,125,160,.8);
      font-style: italic;
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }

    .hero-name {
      font-family: var(--ff-serif);
      font-size: clamp(2.8rem, 5.5vw, 4.8rem);
      color: var(--cream);
      letter-spacing: .08em;
      line-height: 1;
      margin-bottom: .3rem;
    }

    .hero h1 .accent { color: var(--rose); }

    .hero-subtitle {
      font-size: clamp(.8rem, 1.5vw, .95rem);
      color: var(--gold);
      margin-bottom: 1.5rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-family: var(--ff-sans);
    }

    .hero-mantra {
      font-family: var(--ff-serif);
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--rose-light);
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .hero-mantra strong {
      color: var(--cream);
    }

    .hero-desc {
      font-size: 1rem;
      color: rgba(250,240,232,.65);
      max-width: 480px;
      margin: 1.5rem 0 2.5rem;
      line-height: 1.8;
    }

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

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(250,240,232,.1);
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--ff-serif);
      font-size: 1.8rem;
      color: var(--rose-light);
      display: block;
    }
    .stat-label {
      font-size: .75rem;
      color: rgba(250,240,232,.5);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-img-wrap {
      position: relative;
      width: 380px;
      height: 480px;
    }

    .hero-img-main {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 40% 60% 70% 30% / 30% 40% 60% 70%;
      box-shadow: var(--shadow-lg);
      animation: morphBlob 8s ease-in-out infinite;
    }

    @keyframes morphBlob {
      0%, 100% { border-radius: 40% 60% 70% 30% / 30% 40% 60% 70%; }
      25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      50% { border-radius: 30% 60% 50% 70% / 50% 60% 40% 60%; }
      75% { border-radius: 50% 40% 60% 30% / 40% 50% 60% 70%; }
    }

    .hero-img-ring {
      position: absolute;
      inset: -16px;
      border-radius: inherit;
      border: 1.5px solid rgba(200,125,160,.3);
      animation: morphBlob 8s ease-in-out infinite;
    }

    .hero-float-card {
      position: absolute;
      background: rgba(45,27,61,.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(200,125,160,.25);
      border-radius: var(--r-md);
      padding: .8rem 1.2rem;
      box-shadow: var(--shadow-md);
    }

    .card-top-right {
      top: 2rem;
      right: -3rem;
    }

    .card-bottom-left {
      bottom: 3rem;
      left: -3rem;
    }

    .float-card-label {
      font-size: .7rem;
      color: var(--gold);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .25rem;
    }

    .float-card-val {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      color: var(--cream);
    }

    .float-card-dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #4CAF50;
      margin-right: .4rem;
      box-shadow: 0 0 6px #4CAF50;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 6px #4CAF50; }
      50% { box-shadow: 0 0 12px #4CAF50; }
    }

    @media (max-width: 900px) {
      #hero { padding: 3rem 0 3rem; }
      .hero-inner { grid-template-columns: 1fr !important; text-align: center; }
      .hero-content { padding-right: 0; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { margin-top: 3rem; }
      .hero-img-wrap { width: 280px; height: 340px; }
      .card-top-right { right: -1rem; top: 0; }
      .card-bottom-left { left: -1rem; bottom: 0; }
    }

    /* ════════════════════════════════
       ABOUT
    ════════════════════════════════ */
    #about {
      background: linear-gradient(180deg, var(--plum) 0%, #120B1C 100%);
    }

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

    .about-images {
      position: relative;
    }

    .about-img-big {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
    }

    .about-img-small {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 18px;
      border: 4px solid var(--plum-mid);
      box-shadow: var(--shadow-md);
    }

    .about-text h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 1.5rem;
    }

    .about-text p {
      color: rgba(250,240,232,.7);
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
      line-height: 1.85;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: 2rem;
    }

    .tag {
      background: rgba(200,125,160,.12);
      border: 1px solid rgba(200,125,160,.25);
      border-radius: var(--r-full);
      padding: .35rem .9rem;
      font-size: .8rem;
      color: var(--rose-light);
    }

    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-img-small { display: none; }
    }

    /* ════════════════════════════════
       PROCESO
    ════════════════════════════════ */
    #proceso {
      background: var(--plum-mid);
      position: relative;
      overflow: hidden;
    }

    #proceso::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155,123,194,.15), transparent 70%);
    }

    .proceso-header {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
    }

    .proceso-header h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .proceso-header p {
      color: rgba(250,240,232,.6);
      max-width: 560px;
      margin: 0 auto;
      font-size: 1.05rem;
    }

    .proceso-intro {
      max-width: 680px;
      margin: 0 auto 2.5rem;
      border-left: 2px solid var(--rose);
      padding: 2rem 2.5rem;
      background: rgba(200,125,160,.06);
      border-radius: 0 16px 16px 0;
    }

    .proceso-intro p {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      color: rgba(250,240,232,.85);
      line-height: 1.9;
      margin-bottom: .9rem;
      font-style: italic;
    }

    .proceso-intro p:last-child { margin-bottom: 0; }

    .proceso-sub {
      text-align: center;
      color: rgba(250,240,232,.5);
      font-size: .95rem;
      margin-bottom: 4rem;
    }

    .proceso-manifiesto {
      max-width: 620px;
      margin: 4rem auto 0;
      text-align: center;
      padding: 3rem 2rem;
      border-top: 1px solid rgba(200,125,160,.2);
    }

    .proceso-manifiesto p {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      color: rgba(250,240,232,.75);
      line-height: 1.9;
      margin-bottom: 1.1rem;
      font-style: italic;
    }

    .proceso-manifiesto strong {
      color: var(--rose-light);
      font-style: normal;
    }

    .proceso-manifiesto-cierre {
      font-size: 1.3rem !important;
      color: var(--cream) !important;
      font-style: normal !important;
      font-weight: 600;
      letter-spacing: .04em;
      margin-top: 1.5rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 2.5rem;
      left: calc(16.67% + 1rem);
      right: calc(16.67% + 1rem);
      height: 2px;
      background: linear-gradient(90deg, var(--rose), var(--lavender), var(--rose));
      opacity: .3;
    }

    .step-card {
      background: rgba(28,16,32,.6);
      border: 1px solid rgba(200,125,160,.15);
      border-radius: var(--r-lg);
      padding: 2.5rem 2rem;
      text-align: center;
      position: relative;
      transition: transform .3s, box-shadow .3s;
    }

    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(200,125,160,.35);
    }

    .step-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--lavender));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-serif);
      font-size: 1.3rem;
      color: var(--white);
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 16px rgba(200,125,160,.35);
    }

    .step-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
    }

    .step-card h3 {
      font-size: 1.15rem;
      color: var(--cream);
      margin-bottom: .75rem;
    }

    .step-card p {
      font-size: .9rem;
      color: rgba(250,240,232,.6);
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
    }

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

    /* ════════════════════════════════
       COLECCIÓN / GALERÍA
    ════════════════════════════════ */
    #coleccion {
      background: linear-gradient(180deg, #120B1C 0%, var(--plum) 100%);
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .gallery-header h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .gallery-header p {
      color: rgba(250,240,232,.6);
      max-width: 500px;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 1rem;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: var(--r-md);
      position: relative;
      aspect-ratio: 1;
      cursor: pointer;
      background: linear-gradient(135deg, #2D1B3D, #1C1020);
    }

    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(200,125,160,.06) 50%, transparent 100%);
      animation: shimmer 2s infinite;
      z-index: 0;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .gallery-item img { position: relative; z-index: 1; }

    .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      image-rendering: auto;
      filter: saturate(1.1) contrast(1.02);
    }

    .gallery-item:hover img { transform: scale(1.08); }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to top, rgba(28,16,32,.85) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: flex-end;
      padding: 1.2rem;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-doll-name {
      font-family: var(--ff-serif);
      font-size: .95rem;
      color: var(--cream);
      letter-spacing: .05em;
    }

    .gallery-tag {
      font-size: .7rem;
      color: var(--rose-light);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .gallery-footer {
      text-align: center;
      margin-top: 3rem;
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .gallery-item:nth-child(1) {
        grid-column: span 2;
      }
    }

    /* ════════════════════════════════
       TIPOS DE MUÑECAS
    ════════════════════════════════ */
    #tipos {
      background: var(--plum);
    }

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

    .tipos-header h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

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

    .tipo-card {
      background: linear-gradient(145deg, rgba(45,27,61,.8), rgba(28,16,32,.9));
      border: 1px solid rgba(200,125,160,.15);
      border-radius: 24px;
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all .35s ease;
    }

    .tipo-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--rose), var(--lavender));
      opacity: 0;
      transition: opacity .35s;
    }

    .tipo-card:hover::before { opacity: 1; }
    .tipo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(200,125,160,.2);
      border-color: rgba(200,125,160,.3);
    }

    .tipo-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    .tipo-card h3 {
      font-size: 1.4rem;
      color: var(--cream);
      margin-bottom: .5rem;
    }

    .tipo-card .tipo-sub {
      font-size: .8rem;
      color: var(--gold);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .tipo-card p {
      color: rgba(250,240,232,.65);
      font-size: .92rem;
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .tipo-features {
      list-style: none;
      text-align: left;
    }

    .tipo-features li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      font-size: .85rem;
      color: rgba(250,240,232,.7);
      padding: .35rem 0;
      border-bottom: 1px solid rgba(250,240,232,.06);
    }

    .tipo-features li:last-child { border: none; }

    .tipo-check { color: var(--rose); flex-shrink: 0; }

    @media (max-width: 900px) { .tipos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

    /* ════════════════════════════════
       CÓMO ADOPTAR
    ════════════════════════════════ */
    #adoptar {
      background: linear-gradient(135deg, var(--plum-mid) 0%, #1A0D25 100%);
      position: relative;
      overflow: hidden;
    }

    #adoptar::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(155,123,194,.2), transparent 70%);
    }

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

    .adoptar-text h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .adoptar-text > p {
      color: rgba(250,240,232,.65);
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .adoptar-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .adoptar-step {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }

    .adoptar-step-num {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(200,125,160,.15);
      border: 1px solid rgba(200,125,160,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-serif);
      font-size: .95rem;
      color: var(--rose-light);
    }

    .adoptar-step h4 {
      font-size: 1rem;
      color: var(--cream);
      margin-bottom: .25rem;
    }

    .adoptar-step p {
      font-size: .88rem;
      color: rgba(250,240,232,.6);
      line-height: 1.65;
    }

    .adoptar-visual {
      background: rgba(28,16,32,.7);
      border: 1px solid rgba(200,125,160,.2);
      border-radius: 28px;
      padding: 3rem;
      text-align: center;
      position: relative;
    }

    .adoptar-visual-img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 2rem;
      border: 3px solid rgba(200,125,160,.4);
      box-shadow: 0 0 40px rgba(200,125,160,.2);
    }

    .adoptar-visual h3 {
      font-size: 1.4rem;
      color: var(--cream);
      margin-bottom: .5rem;
    }

    .adoptar-visual p {
      color: rgba(250,240,232,.6);
      font-size: .9rem;
      margin-bottom: 2rem;
    }

    .adoptar-social-proof {
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(250,240,232,.1);
    }

    .proof-item { text-align: center; }
    .proof-num {
      font-family: var(--ff-serif);
      font-size: 1.6rem;
      color: var(--rose-light);
      display: block;
    }
    .proof-label {
      font-size: .72rem;
      color: rgba(250,240,232,.5);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .adoptar-ctas {
      display: flex;
      flex-direction: column;
      gap: .85rem;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      .adoptar-grid { grid-template-columns: 1fr; gap: 3rem; }
      .adoptar-visual { padding: 2rem; }
    }

    /* ════════════════════════════════
       TESTIMONIOS
    ════════════════════════════════ */
    #testimonios {
      background: var(--plum);
    }

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

    .testi-header h2 {
      font-size: clamp(2rem, 3vw, 2.5rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .carousel-wrap {
      position: relative;
      overflow: hidden;
      margin: 0 -0.5rem;
      padding: 0.5rem;
    }

    .carousel-track {
      display: flex;
      gap: 1.5rem;
      transition: transform .55s cubic-bezier(.25,.46,.45,.94);
      will-change: transform;
    }

    .testi-card {
      flex: 0 0 calc(33.333% - 1rem);
      min-width: 0;
      background: rgba(45,27,61,.6);
      border: 1px solid rgba(200,125,160,.15);
      border-radius: 20px;
      padding: 2rem;
      transition: border-color .3s, transform .3s;
    }

    .testi-card:hover {
      border-color: rgba(200,125,160,.3);
      transform: translateY(-4px);
    }

    .testi-stars {
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 1rem;
      letter-spacing: .1em;
    }

    .testi-text {
      font-size: .95rem;
      color: rgba(250,240,232,.8);
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
      font-family: var(--ff-serif);
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--lavender));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: white;
      font-family: var(--ff-serif);
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 600;
      font-size: .9rem;
      color: var(--cream);
    }

    .testi-location {
      font-size: .78rem;
      color: rgba(250,240,232,.5);
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .carousel-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(200,125,160,.12);
      border: 1px solid rgba(200,125,160,.3);
      color: var(--rose-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: background .2s, transform .2s;
      flex-shrink: 0;
    }

    .carousel-btn:hover {
      background: rgba(200,125,160,.28);
      transform: scale(1.1);
    }

    .carousel-dots {
      display: flex;
      gap: .5rem;
    }

    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(200,125,160,.25);
      border: none;
      cursor: pointer;
      transition: background .3s, transform .3s;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--rose);
      transform: scale(1.4);
    }

    @media (max-width: 900px) {
      .testi-card { flex: 0 0 calc(100% - 0px); }
    }
    @media (min-width: 601px) and (max-width: 900px) {
      .testi-card { flex: 0 0 calc(50% - .75rem); }
    }

    /* ════════════════════════════════
       FAQ
    ════════════════════════════════ */
    #faq {
      background: linear-gradient(180deg, var(--plum) 0%, var(--plum-mid) 100%);
    }

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

    .faq-header h2 {
      font-size: clamp(2rem, 3vw, 2.5rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: rgba(28,16,32,.6);
      border: 1px solid rgba(200,125,160,.12);
      border-radius: var(--r-md);
      overflow: hidden;
      transition: border-color .2s;
    }

    .faq-item:hover { border-color: rgba(200,125,160,.3); }

    .faq-q {
      padding: 1.4rem 1.8rem;
      font-weight: 600;
      font-size: .95rem;
      color: var(--cream);
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      gap: .75rem;
    }

    .faq-q::before {
      content: '✦';
      color: var(--rose);
      flex-shrink: 0;
      font-size: .7rem;
      margin-top: .15rem;
    }

    .faq-a {
      padding: 0 1.8rem 1.4rem 3.2rem;
      font-size: .9rem;
      color: rgba(250,240,232,.65);
      line-height: 1.75;
    }

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

    /* ════════════════════════════════
       CTA FINAL
    ════════════════════════════════ */
    #cta-final {
      background: linear-gradient(135deg, #1A0D25 0%, var(--plum-mid) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,125,160,.15), transparent 70%);
    }

    .cta-final-inner {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
    }

    #cta-final h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--cream);
      margin-bottom: 1.2rem;
    }

    #cta-final p {
      color: rgba(250,240,232,.7);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .cta-final-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3.5rem;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .82rem;
      color: rgba(250,240,232,.55);
    }

    .trust-badge-icon { font-size: 1.1rem; }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      background: #0D0814;
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(200,125,160,.1);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: var(--ff-serif);
      font-size: 1.5rem;
      color: var(--rose-light);
      margin-bottom: 1rem;
    }

    .footer-brand-desc {
      color: rgba(250,240,232,.45);
      font-size: .88rem;
      line-height: 1.75;
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }

    .footer-links a {
      font-size: .87rem;
      color: rgba(250,240,232,.5);
      transition: color .2s;
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(250,240,232,.06);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .8rem;
      color: rgba(250,240,232,.35);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .ig-link {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: rgba(250,240,232,.55);
      transition: color .2s;
    }

    .ig-link:hover { color: var(--rose-light); }

    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ════════════════════════════════
       FLOATING WHATSAPP / IG BUTTON
    ════════════════════════════════ */
    .float-ig-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px; height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 8px 32px rgba(131,58,180,.5);
      z-index: 99;
      transition: transform .3s;
      animation: floatBtn 3s ease-in-out infinite;
    }

    .float-ig-btn:hover { transform: scale(1.1); }

    @keyframes floatBtn {
      0%, 100% { box-shadow: 0 8px 32px rgba(131,58,180,.5); }
      50% { box-shadow: 0 12px 40px rgba(131,58,180,.7); }
    }

    /* ════════════════════════════════
       ANIMATIONS
    ════════════════════════════════ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ════════════════════════════════
       AVAILABILITY BANNER
    ════════════════════════════════ */
    .availability-banner {
      background: linear-gradient(90deg, rgba(200,125,160,.15), rgba(155,123,194,.15), rgba(200,125,160,.15));
      border-top: 1px solid rgba(200,125,160,.2);
      border-bottom: 1px solid rgba(200,125,160,.2);
      padding: .8rem 0;
      text-align: center;
      font-size: .83rem;
      color: rgba(250,240,232,.7);
      letter-spacing: .04em;
      margin-top: 62px;
    }

    .availability-banner .dot {
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4CAF50;
      margin: 0 .4rem;
      box-shadow: 0 0 6px #4CAF50;
      animation: pulse 2s infinite;
      vertical-align: middle;
    }
/* ════════════════════════════════
   DOLL MODALS
════════════════════════════════ */
.doll-modal {
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 24px;
  background: transparent;
  max-width: 900px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  overflow: visible; /* to let the close button float slightly outside if needed */
}

/* ::backdrop is styled for when dialog is opened using .showModal() */
.doll-modal::backdrop {
  background: rgba(13, 8, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  border: 1px solid rgba(200,125,160,.2);
  border-radius: 24px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--rose-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s, color 0.3s;
}

.modal-close:hover {
  color: var(--white);
  transform: scale(1.1);
}

.modal-layout {
  display: flex;
  flex-direction: row;
}

.modal-image {
  flex: 1 1 50%;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.modal-text {
  flex: 1 1 50%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.modal-story {
  font-size: 1rem;
  color: rgba(250,240,232,.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: var(--ff-serif);
  font-style: italic;
}

.modal-details p {
  font-size: 0.85rem;
  color: rgba(250,240,232,.5);
  margin-bottom: 0.5rem;
}

.modal-btn {
  margin-top: 2rem;
  align-self: flex-start;
}

/* Animations using allow-discrete and @starting-style */
.doll-modal {
  transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete, transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.doll-modal[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .doll-modal[open] {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}

.doll-modal::backdrop {
  transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete, backdrop-filter 0.4s ease, background-color 0.4s ease;
  background-color: rgba(13, 8, 20, 0);
  backdrop-filter: blur(0px);
}

.doll-modal[open]::backdrop {
  background-color: rgba(13, 8, 20, 0.7);
  backdrop-filter: blur(16px);
}

@starting-style {
  .doll-modal[open]::backdrop {
    background-color: rgba(13, 8, 20, 0);
    backdrop-filter: blur(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-layout {
    flex-direction: column;
  }
  .modal-image img {
    min-height: 250px;
    max-height: 350px;
  }
  .modal-text {
    padding: 2rem 1.5rem;
  }
  .modal-title {
    font-size: 2rem;
  }
}

/* ════════════════════════════════
   MODAL MEDIA SECTION
   Extra photos + YouTube embed
════════════════════════════════ */
.modal-media {
  padding: 0 2.5rem 2.5rem;
}

.modal-media-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 240, 232, 0.4);
  margin-bottom: 1rem;
  display: block;
}

/* Extra Photos Grid */
.modal-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-extra-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}

.modal-extra-grid img:hover {
  border-color: var(--gold);
  transform: scale(1.04);
}

/* YouTube Embed */
.modal-youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.modal-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Lightbox overlay for extra images */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .modal-media {
    padding: 0 1.5rem 1.5rem;
  }
  .modal-extra-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
