  :root {
      --coral: #F27C6B;
      --coral-dark: #E06455;
      --blush: #FFF4F2;
      --rose-soft: #F9E4DF;
      --cream: #F6ECEA;
      --white: #FFFFFF;
      --text: #4A4A4A;
      --text-soft: #7A7A7A;
      --line: rgba(74, 74, 74, 0.08);
      --shadow: 0 20px 50px rgba(84, 56, 51, 0.08);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --container: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--blush);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 60px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--coral-dark);
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.7rem, 5vw, 4.7rem);
      margin-bottom: 22px;
      color: var(--white);
    }

    h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 18px;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 14px;
    }

    p {
      font-size: 1.05rem;
      color: var(--text);
    }

    .lead {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.92);
      max-width: 620px;
      margin-bottom: 22px;
    }

    .muted {
      color: var(--text-soft);
    }

    .btn-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-size: 0.98rem;
      font-weight: 600;
      transition: all 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--coral);
      color: var(--white);
      box-shadow: 0 12px 30px rgba(242, 124, 107, 0.28);
    }

    .btn-primary:hover {
      background: var(--coral-dark);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.95);
      color: var(--coral-dark);
      border-color: rgba(255,255,255,0.7);
    }

    .btn-secondary:hover {
      background: var(--white);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--coral-dark);
      border-color: rgba(224, 100, 85, 0.24);
    }

    .btn-outline:hover {
      background: rgba(242, 124, 107, 0.06);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 244, 242, 0.82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(74, 74, 74, 0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 84px;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--coral);
      box-shadow: inset 0 0 0 8px rgba(255,255,255,0.24);
      flex-shrink: 0;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
    }

    .brand-subtitle {
      font-size: 0.84rem;
      color: var(--text-soft);
      font-weight: 500;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
    }

    .nav a {
      font-size: 0.96rem;
      color: var(--text);
    }

    .nav a:hover {
      color: var(--coral-dark);
    }

    .hero {
      padding: 0;
    }

    .hero-card {
      position: relative;
      min-height: 720px;
        border-radius: 0;
      overflow: hidden;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.1) 100%),
      url('lactanciaMain.jpeg') center/cover no-repeat;
      box-shadow: var(--shadow);
      display: grid;
        margin: 0;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      min-height: 720px;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.15) 100%
      );
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .hero-kicker::before {
      content: "";
      width: 30px;
      height: 1px;
      background: rgba(255,255,255,0.7);
    }

    .hero-trust {
      margin-top: 18px;
      color: rgba(255,255,255,0.86);
      font-size: 0.98rem;
    }

    .hero-photo-space {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 28px;
    }

    .photo-placeholder {
      width: min(100%, 520px);
      height: 84%;
      border-radius: 28px 28px 0 0;
      border: 1px dashed rgba(255,255,255,0.42);
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 28px;
      color: rgba(255,255,255,0.88);
      font-weight: 600;
      font-size: 1rem;
    }

    .trust-strip {
      background: var(--white);
      margin-top: 0;
    }

    .trust-box {
      max-width: 860px;
      margin: 0 auto;
      padding: 26px 34px;
      border: 1px solid var(--line);
      border-radius: 22px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(84, 56, 51, 0.04);
    }

    .trust-box p {
      font-size: 1.08rem;
      color: var(--text);
    }

    .about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 56px;
      align-items: center;
    }

    .portrait-card {
      background: linear-gradient(180deg, #fbefec 0%, #f6e1db 100%);
      border-radius: var(--radius-lg);
      min-height: 640px;
      box-shadow: var(--shadow);
      padding: 26px;
      border: 1px solid rgba(74, 74, 74, 0.05);
      overflow: hidden;
    }

    .portrait-card .photo-placeholder {
      width: 100%;
      height: 100%;
      min-height: 588px;
      border-radius: 22px;
      border-color: rgba(224, 100, 85, 0.25);
      color: var(--coral-dark);
      background: rgba(255,255,255,0.45);
    }
    .portrait-img {
      display: block;
      width: 100%;
      height: 588px; /* altura real fija dentro del box */
      object-fit: cover; /* hace zoom y recorta */
      object-position: center center;
      border-radius: 22px;
    }
    .about-copy p + p {
      margin-top: 16px;
    }

    .about-quote {
      margin-top: 26px;
      padding: 24px 26px;
      border-left: 4px solid var(--coral);
      background: var(--blush);
      border-radius: 0 18px 18px 0;
      font-family: 'Playfair Display', serif;
      font-size: 1.28rem;
      color: var(--text);
    }

    .services {
      background: var(--rose-soft);
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 44px;
    }

    .section-head p {
      color: var(--text-soft);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .card {
      background: rgba(255,255,255,0.92);
      border-radius: 24px;
      padding: 30px 26px;
      box-shadow: 0 16px 34px rgba(84, 56, 51, 0.06);
      border: 1px solid rgba(74,74,74,0.05);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .card-icon {
      width: 50px;
      height: 50px;
      border-radius: 18px;
      background: rgba(242, 124, 107, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--coral-dark);
      font-size: 1.25rem;
      font-weight: 700;
    }

    .card ul {
      list-style: none;
      margin: 8px 0 20px;
    }

    .card li {
      margin-bottom: 10px;
      color: var(--text-soft);
      position: relative;
      padding-left: 18px;
    }

    .card li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--coral);
    }

    .meta {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(74,74,74,0.07);
    }

    .meta p {
      font-size: 0.96rem;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    .price {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }

    .homecare {
      background: var(--white);
    }

    .homecare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
    }

    .homecare-copy {
      padding-right: 28px;
    }

    .pill-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 24px 0 16px;
    }

    .pill {
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--blush);
      border: 1px solid rgba(242, 124, 107, 0.16);
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .image-card {
      background: linear-gradient(180deg, #fbeeea 0%, #f4ded8 100%);
      border-radius: 30px;
      min-height: 510px;
      padding: 24px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-card .photo-placeholder {
      width: 100%;
      height: 100%;
      min-height: 462px;
      border-radius: 22px;
      border-color: rgba(224, 100, 85, 0.22);
      color: var(--coral-dark);
      background: rgba(255,255,255,0.45);
    }

    .difference {
      background: var(--cream);
    }

    .difference-box {
      max-width: 940px;
      margin: 0 auto;
      text-align: center;
      padding: 52px 34px;
      border-radius: 28px;
      background: rgba(255,255,255,0.42);
      border: 1px solid rgba(74,74,74,0.05);
    }

    .difference-box h2 {
      max-width: 740px;
      margin-left: auto;
      margin-right: auto;
    }

    .reserve {
      background: var(--white);
    }

    .reserve-box {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      align-items: stretch;
      padding: 34px;
      border-radius: 32px;
      background: linear-gradient(180deg, #fff9f8 0%, #fff4f2 100%);
      border: 1px solid rgba(74,74,74,0.06);
      box-shadow: var(--shadow);
    }

    .reserve-copy {
      padding: 18px 8px 18px 6px;
    }

    .widget-placeholder {
      min-height: 380px;
      border-radius: 24px;
      border: 1px dashed rgba(224, 100, 85, 0.32);
      background: rgba(255,255,255,0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 28px;
      color: var(--coral-dark);
      font-weight: 600;
    }

    .footer {
      background: #fff7f5;
      border-top: 1px solid rgba(74,74,74,0.06);
      padding: 34px 0 38px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 26px;
      align-items: start;
    }

    .footer p,
    .footer a {
      color: var(--text-soft);
      font-size: 0.96rem;
    }
    .footer a:hover {
      color: var(--coral-dark);
    }
    .footer-title {
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text);
    }

    @media (max-width: 1100px) {
      .cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid,
      .homecare-grid,
      .reserve-box,
      .hero-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-card,
      .hero-grid {
        min-height: auto;
      }

      .hero-content {
        padding: 64px 34px 20px;
      }

      .hero-photo-space {
        padding: 0 24px 24px;
      }

      .photo-placeholder {
        height: 420px;
        border-radius: 24px;
      }

      .homecare-copy {
        padding-right: 0;
      }
    }

    @media (max-width: 760px) {
      .section {
        padding: 74px 0;
      }

      .header-inner {
        min-height: 78px;
      }

      .nav {
        display: none;
      }

      .hero-content {
        padding: 52px 24px 20px;
      }

      .trust-box,
      .difference-box,
      .reserve-box {
        padding: 26px 20px;
      }

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

      .portrait-card,
      .image-card {
        min-height: 420px;
      }

      .portrait-card .photo-placeholder,
      .image-card .photo-placeholder,
      .widget-placeholder {
        min-height: 320px;
      }

      h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
      }

      h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
      }
    }
    .testimonials {
      background: var(--rose-soft);
      overflow: hidden;
    }

    .testimonial-carousel {
      position: relative;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .testimonial-viewport {
      overflow: hidden;
      width: 100%;
    }

    .testimonials-track {
      display: flex;
      gap: 28px;
      transition: transform 0.45s ease;
      will-change: transform;
    }

    .testimonial-card {
      flex: 0 0 calc(50% - 14px);
      background: rgba(255,255,255,0.92);
      border-radius: var(--radius-lg);
      padding: 34px 30px;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .testimonial-card h3 {
      font-size: 1.2rem;
      margin-bottom: 6px;
    }

    .testimonial-resume {
      color: var(--coral-dark);
      font-weight: 600;
      margin-bottom: 14px;
      font-size: 0.98rem;
    }

    .testimonial-card p {
      color: var(--text-soft);
      font-size: 1.02rem;
    }

    .testimonial-card::before {
      content: "“";
      position: absolute;
      top: 14px;
      right: 20px;
      font-size: 3.5rem;
      line-height: 1;
      font-family: 'Playfair Display', serif;
      color: rgba(242, 124, 107, 0.14);
    }

    .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.9);
      color: var(--coral-dark);
      font-size: 1.2rem;
      cursor: pointer;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(84, 56, 51, 0.06);
      transition: all 0.25s ease;
    }

    .carousel-btn:hover {
      transform: translateY(-1px);
      background: var(--white);
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 26px;
    }

    .carousel-dots button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(224, 100, 85, 0.25);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .carousel-dots button.active {
      background: var(--coral-dark);
      transform: scale(1.15);
    }

    @media (max-width: 900px) {
      .testimonial-card {
        flex: 0 0 100%;
      }

      .testimonial-carousel {
        gap: 12px;
      }

      .carousel-btn {
        width: 42px;
        height: 42px;
      }
    }

    /* Detalle premium: quote decorativo */
    .testimonial-card::before {
      content: "“";
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 3.5rem;
      font-family: 'Playfair Display', serif;
      color: rgba(242, 124, 107, 0.15);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }
    .legal-box {
      max-width: 820px;
      margin: 0 auto;
      background: rgba(255,255,255,0.92);
      padding: 42px 38px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .legal-box h3 {
      margin-top: 28px;
    }

    .legal-box p,
    .legal-box li {
      color: var(--text-soft);
    }

    .legal-box ul {
      margin-top: 10px;
      padding-left: 18px;
    }
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(92%, 720px);
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      padding: 18px 22px;
      z-index: 999;
      display: none;
    }

    .cookie-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cookie-inner p {
      font-size: 0.95rem;
      color: var(--text-soft);
      flex: 1;
    }

    .cookie-actions {
      display: flex;
      gap: 10px;
    }
    .wa-soft-bar{
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      max-width: 1100px;
      margin: 30px auto;
      padding: 6px;
      box-sizing: border-box;
      background: #fff7fa;
      border: 1.5px solid #f1d7e1;
      border-radius: 999px;
      box-shadow: 0 10px 30px rgba(190, 140, 160, 0.10);
    }

    .wa-soft-icon{
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      background: #d7f0df;
      color: #4f9a6c;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wa-soft-icon svg{
      width: 24px;
      height: 24px;
    }

    .wa-soft-input{
      flex: 1;
      height: 54px;
      border: none;
      outline: none;
      background: transparent;
      color: #6f5862;
      font-size: 15px;
      line-height: 54px;
      font-family: Arial, sans-serif;
      padding: 0 6px;
      box-sizing: border-box;
    }

    .wa-soft-input::placeholder{
      color: #a88a96;
    }

    .wa-soft-button{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      padding: 14px 24px;
      border-radius: 999px;
      background: #e7b7c8;
      color: #ffffff;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: 700;
      transition: all .2s ease;
      box-shadow: 0 6px 18px rgba(190, 120, 150, 0.18);
    }

    .wa-soft-button:hover{
      background: #dda7bb;
      transform: translateY(-1px);
    }

    @media (max-width: 768px){
      .wa-soft-bar{
        flex-direction: column;
        align-items: stretch;
        border-radius: 28px;
        padding: 16px;
      }

      .wa-soft-icon{
        margin: 0 auto;
      }

      .wa-soft-input{
        width: 100%;
        min-height: 110px;
        background: rgba(255,255,255,0.72);
        border: 1px solid #f2dbe3;
        border-radius: 18px;
        padding: 14px;
      }

      .wa-soft-button{
        width: 100%;
      }
    }