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

    :root {
      --black: #1405ab;
      --white: #ffffff;
      --gray: #e8e6e1;
      --gray-mid: #b0ada6;
      --pink: #f8d1e2;
      --pink-dark: #efaac8;
      --lavender: #ede8fb;
      --hot-pink: #e4437f;
      --indigo: #1405ab;
      --blue: #6482f3;
      --cream: #fdf7f0;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Poppins', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--black);
      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: 0 60px;
      height: 64px;
      background: var(--white);
      border-bottom: 1px solid var(--gray);
      overflow: visible;
    }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 150px;
      width: auto;
      display: block;
    }

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

    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--black);
      transition: opacity 0.2s;
    }

    .nav-links a:hover { opacity: 0.45; }

    .nav-cta {
      font-size: 12px !important;
      font-weight: 500 !important;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--cream) !important;
      background: var(--hot-pink);
      padding: 10px 22px;
      border-radius: 20px;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.75 !important; }

    .nav-ig-link {
      display: flex;
      align-items: center;
      color: var(--black);
      transition: opacity 0.2s;
    }
    .nav-ig-link svg {
      width: 18px;
      height: 18px;
    }
    .nav-ig-link:hover { opacity: 0.45; }

    .testimonios-cta {
      text-align: center;
      margin-top: 32px;
    }
    .testimonios-ig-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
    }
    .testimonios-ig-btn svg {
      width: 16px;
      height: 16px;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--white);
      display: flex;
      align-items: center;
      padding: calc(81px + 32px) 80px 48px;
    }

    .hero-card {
      width: 100%;
      background: rgba(248, 209, 226, 0.45);
      border-radius: 20px;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 48px;
      padding: 48px 72px;
    }

    .hero-content {
      flex: 0 1 520px;
      position: relative;
      z-index: 2;
    }

    .hero-figure {
      flex: 0 0 auto;
      height: 960px;
      width: auto;
      margin-top: -180px;
      margin-bottom: -180px;
      mix-blend-mode: multiply;
      z-index: 1;
      pointer-events: none;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(40px, 5.5vw, 72px);
      line-height: 1.05;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--hot-pink);
      white-space: nowrap;
    }

    .hero-desc {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: #5a56a0;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .btn-secondary {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--white);
      background: var(--indigo);
      padding: 14px 32px;
      border-radius: 20px;
      transition: opacity 0.2s;
    }

    .btn-secondary:hover { opacity: 0.8; }

    .btn-primary {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--cream);
      background: var(--hot-pink);
      padding: 14px 32px;
      border-radius: 20px;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.8; }
    .btn-submit { background: var(--hot-pink) !important; color: var(--cream) !important; }

    .btn-ghost {
      display: inline-block;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--indigo);
      border-bottom: 1px solid var(--indigo);
      padding-bottom: 2px;
      transition: opacity 0.2s;
    }

    .btn-ghost:hover { opacity: 0.45; }

    /* ── MARQUEE ── */
    .marquee-section {
      overflow: hidden;
      border-top: 1px solid var(--black);
      border-bottom: 1px solid var(--black);
      padding: 16px 0;
      margin-top: 60px;
      white-space: nowrap;
      background: var(--white);
    }

    .marquee-track {
      display: inline-flex;
      animation: marquee 45s linear infinite;
    }

    .marquee-track span {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--black);
      padding: 0 24px;
    }

    .marquee-track .sep {
      padding: 0 4px;
      display: inline-flex;
      align-items: center;
      vertical-align: middle;
    }
    .marquee-track .sep img {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

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

    /* ── SECTION COMMONS ── */
    section { padding: 100px 60px; }

    .section-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--indigo);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 60px;
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--hot-pink);
    }

    /* ── SOBRE MÍ ── */
    #sobre-mi {
      display: grid;
      grid-template-columns: 5fr 7fr;
      column-gap: 64px;
      align-items: center;
      border-top: 1px solid var(--gray);
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .sobre-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .sobre-content-top .section-title { margin-bottom: 0; }

    .sobre-img-wrap {
      position: relative;
      width: 100%;
      max-width: 440px;
      margin: 0 auto;
    }

    .sobre-deco-wrap {
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
      width: 140px;
      height: 140px;
      pointer-events: none;
    }

    .sobre-deco-bl {
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      transform: translate(-50%, 50%);
    }

    .sobre-deco-spin {
      width: 100%;
      height: 100%;
      animation: spin-slow 14s linear infinite;
    }

    .sobre-img {
      width: 100%;
      height: 680px;
      background: var(--gray);
      overflow: hidden;
      position: relative;
      border-radius: 20px;
    }

    .sobre-deco {
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
      width: 44px;
      height: 44px;
      z-index: 2;
      pointer-events: none;
    }

    .sobre-img img:not(.sobre-deco) {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sobre-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-mid);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      min-height: 400px;
    }

    .sobre-content-body p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: #5a56a0;
      margin-bottom: 20px;
    }

    .sobre-content-body p:last-of-type { margin-bottom: 28px; }

    /* ── SERVICIOS ── */
    #servicios {
      background: var(--lavender);
      color: var(--black);
      border-top: 1px solid #d8d1f5;
    }

    #servicios .section-label { color: var(--gray-mid); }
    #servicios .section-title { color: var(--black); }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(100,130,243,0.15);
      border: 1px solid rgba(100,130,243,0.15);
      border-radius: 20px;
      overflow: hidden;
    }

    .servicio-card {
      background: var(--lavender);
      padding: 48px 40px;
      transition: background 0.25s;
      cursor: default;
      display: flex;
      flex-direction: column;
    }


    .servicio-num-wrap {
      position: relative;
      width: 88px;
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .servicio-num-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      image-rendering: crisp-edges;
      animation: spin-slow 14s linear infinite;
    }

    .servicio-num {
      position: relative;
      z-index: 1;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--white);
      margin: 0;
    }

    .servicio-title {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .servicio-desc {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: #5a56a0;
      margin-top: auto;
      padding-top: 24px;
    }

    .servicio-card.featured {
      background: #e2dbf8;
      border-left: 2px solid var(--blue);
    }

    /* ── TESTIMONIOS ── */
    #testimonios {
      border-top: 1px solid var(--gray);
    }

    .testimonios-carousel {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .testimonios-track-wrapper {
      overflow: hidden;
      flex: 1;
    }

    .testimonios-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonios-track .testimonio-card {
      flex: 0 0 calc(33.333% - 22px);
      margin-right: 32px;
    }

    .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--indigo);
      background: transparent;
      color: var(--indigo);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }

    .carousel-btn:hover {
      background: var(--indigo);
      color: var(--white);
    }

    .carousel-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .testimonio-card {
      padding: 40px 32px;
      border: 1px solid var(--lavender);
      border-radius: 20px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .testimonio-autor {
      margin-top: auto;
      padding-top: 24px;
    }

    .testimonio-quote {
      font-family: var(--serif);
      font-size: 48px;
      line-height: 1;
      color: var(--hot-pink);
      margin-bottom: 16px;
    }

    .testimonio-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: #5a56a0;
      margin-bottom: 32px;
    }

    .testimonio-autor {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--black);
    }

    /* ── CONTACTO ── */
    #contacto {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      border-top: 1px solid var(--gray);
    }

    .contacto-left .section-label { margin-bottom: 8px; }
    .contacto-left .section-title { margin-bottom: 20px; }

    .contacto-left p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: #5a56a0;
      margin-bottom: 36px;
    }

    .contacto-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contacto-info a {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: opacity 0.2s;
    }

    .contacto-info a:hover { opacity: 0.65; }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--lavender);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .contacto-info a:hover .info-icon { background: var(--pink); }

    .info-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: var(--indigo);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .info-text { display: flex; flex-direction: column; gap: 2px; }

    .contacto-info .info-label {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray-mid);
    }

    .contacto-info .info-value {
      font-size: 13px;
      font-weight: 400;
      color: var(--black);
    }

    /* ── CASO ACORDEÓN ── */
    .caso-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .caso-option {
      padding: 9px 18px;
      border: 1.5px solid #d8d1f5;
      border-radius: 20px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--black);
      background: transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .caso-option:hover { background: var(--lavender); border-color: var(--blue); }
    .caso-option.selected { background: var(--hot-pink); color: var(--cream); border-color: var(--hot-pink); }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--hot-pink);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--black);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--hot-pink);
      padding: 10px 0;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-bottom-color: var(--indigo);
    }

    .form-group textarea { min-height: 100px; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-submit {
      margin-top: 32px;
    }

    .form-success-msg {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 24px;
      gap: 16px;
    }

    .form-success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--hot-pink);
    }

    .form-success-icon svg {
      width: 28px;
      height: 28px;
    }

    .form-success-msg h3 {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--indigo);
      margin: 0;
    }

    .form-success-msg p {
      font-size: 0.95rem;
      color: var(--black);
      opacity: 0.65;
      max-width: 320px;
      margin: 0;
      line-height: 1.6;
    }

    .form-error-msg {
      margin-top: 16px;
      font-size: 13px;
      color: #c0392b;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--indigo);
      border-top: none;
      padding: 0 60px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: visible;
    }

    .footer-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .footer-logo img {
      height: 150px;
      width: auto;
      display: block;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-links a {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(253,247,240,0.5);
      transition: color 0.2s;
    }

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

    .footer-copy {
      font-size: 11px;
      color: rgba(253,247,240,0.5);
      letter-spacing: 0.05em;
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wa-bubble {
      background: var(--white);
      border: 1px solid var(--gray);
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 400;
      color: var(--black);
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      opacity: 0;
      transform: translateX(8px);
      pointer-events: none;
      position: relative;
    }

    .wa-bubble::after {
      content: '';
      position: absolute;
      right: -7px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 7px solid var(--white);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }

    .wa-bubble::before {
      content: '';
      position: absolute;
      right: -9px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 8px solid var(--gray);
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
    }

    .wa-bubble .wa-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .wa-bubble .wa-word.show {
      opacity: 1;
      transform: translateY(0);
    }

    .wa-btn {
      width: 56px;
      height: 56px;
      background: var(--hot-pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      flex-shrink: 0;
      transition: transform 0.2s ease, opacity 0.2s;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    }

    .wa-btn:hover { opacity: 0.85; transform: scale(1.07); }

    .wa-btn svg { width: 24px; height: 24px; fill: var(--pink); }

    .wa-float:hover .wa-bubble {
      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    /* ── DECORATIVOS ── */
    .deco {
      position: absolute;
      pointer-events: none;
      mix-blend-mode: multiply;
      user-select: none;
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ── RESPONSIVE ── */

    /* Pantallas medianas-grandes: imagen achicada para que entre en la card */
    @media (max-width: 1400px) {
      .hero-content { flex: 0 1 460px; }
      .hero-figure { height: 760px; margin-top: -120px; margin-bottom: -120px; }
    }

    /* Pantallas medianas: imagen y layout reducidos */
    @media (max-width: 1200px) {
      #hero { padding: calc(81px + 32px) 48px 48px; }
      .hero-card { padding: 36px 48px; gap: 28px; }
      .hero-content { flex: 0 1 360px; }
      .hero-figure { height: 560px; margin-top: -120px; margin-bottom: -120px; }
    }

    @media (max-width: 900px) {
      /* NAV */
      nav { padding: 0 24px; }
      nav .nav-links li:not(:last-child):not(.nav-ig) { display: none; }
      .nav-logo img { height: 160px; }

      /* HERO */
      #hero { padding: calc(64px + 24px) 24px 32px; min-height: auto; }
      .hero-card { flex-direction: column; padding: 32px 24px; gap: 24px; min-height: auto; }
      .hero-content { flex: 0 0 auto; }
      .hero-title em { white-space: normal; }
      .hero-figure { display: none; }
      .hero-desc { max-width: 100%; }

      /* SECTIONS */
      section { padding: 72px 24px; }

      /* SOBRE MÍ */
      #sobre-mi {
        grid-template-columns: 1fr;
        row-gap: 28px;
        padding-top: 64px;
        padding-bottom: 64px;
      }
      .sobre-right { display: contents; }
      .sobre-content-top { order: 1; }
      .sobre-img-wrap {
        order: 2;
        width: 85%;
        max-width: 360px;
        height: 500px;
        margin: 0 auto;
      }
      .sobre-img { width: 100%; height: 100%; }
      .sobre-content-body { order: 3; }
      .sobre-deco { display: none; }

      /* SERVICIOS */
      .servicios-grid { grid-template-columns: 1fr; }

      /* TESTIMONIOS */
      #testimonios { padding-top: 48px; padding-bottom: 48px; }

      /* TESTIMONIOS — flechas abajo */
      .testimonios-carousel { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .testimonios-track-wrapper { order: 1; flex: 0 0 100%; }
      .testimonios-carousel .carousel-btn { order: 2; }
      .testimonios-track .testimonio-card { flex: 0 0 calc(100% - 32px); }

      /* CONTACTO */
      #contacto { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }

      /* FOOTER */
      footer { flex-direction: column; height: auto; padding: 40px 24px; gap: 20px; text-align: center; }
      .footer-logo img { height: 130px; }
      .footer-links { flex-wrap: wrap; justify-content: center; }

      /* WHATSAPP */
      .wa-float { bottom: 20px; right: 20px; }
      .wa-bubble { display: none; }
    }

    @media (max-width: 480px) {
      nav { padding: 0 16px; }
      .nav-logo img { height: 120px; }

      section { padding: 56px 16px; }
      .servicio-card { padding: 32px 24px; }

      .sobre-img-wrap { width: 80%; max-width: 300px; height: 440px; }

      .testimonios-carousel { gap: 12px; }
      .carousel-btn { width: 40px; height: 40px; }
      .testimonio-card { padding: 28px 20px; }

      footer { padding: 32px 16px; }
      .footer-logo img { height: 100px; }
      .footer-links { gap: 16px; }
    }
