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

    :root {
      --bg-primary: #FAF8F5;
      /* Off-white linen */
      --bg-secondary: #F4F1EA;
      /* Cream */
      --text-main: #2D2522;
      /* Warm charcoal */
      --text-muted: #615752;
      /* Earthy grey */
      --honey: #D99B26;
      /* Deep Honey gold */
      --honey-dark: #B57B18;
      --honey-light: #FBF4E6;
      --salvia: #5C6F59;
      /* Sage Green */
      --salvia-dark: #475745;
      --salvia-light: #EBEFEA;
      --border: #E5DFC8;
      /* Warm light border */
      --white: #FFFFFF;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: 'Montserrat', system-ui, sans-serif;
      --shadow-sm: 0 4px 12px rgba(45, 37, 34, 0.03);
      --shadow-md: 0 12px 30px rgba(45, 37, 34, 0.06);
      --shadow-lg: 0 20px 40px rgba(45, 37, 34, 0.1);
      --r-sm: 8px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-btn: 30px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg-primary);
      color: var(--text-main);
      font-family: var(--font-sans);
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-serif);
      font-weight: 500;
      line-height: 1.25;
      color: var(--text-main);
    }

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

    img {
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: var(--r-md);
    }

    /* ── HEADER & NAV ── */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    }

    .header.scrolled {
      background: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.01em;
      transition: color 0.3s ease;
    }

    .header.scrolled .nav-logo {
      color: var(--text-main);
    }

    .nav-logo span {
      color: var(--honey);
    }

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

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      position: relative;
      padding: 0.3rem 0;
      transition: color 0.3s ease;
    }

    .header.scrolled .nav-links a {
      color: var(--text-muted);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--honey);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .header.scrolled .nav-links a:hover {
      color: var(--text-main);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--salvia) !important;
      color: var(--white) !important;
      padding: 0.7rem 1.6rem !important;
      border-radius: var(--r-btn) !important;
      font-weight: 600 !important;
      font-size: 0.82rem !important;
      transition: background-color 0.3s, transform 0.2s !important;
      box-shadow: var(--shadow-sm);
    }

    .nav-cta:hover {
      background: var(--salvia-dark) !important;
      transform: translateY(-1px);
    }

    .nav-cta::after {
      display: none !important;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      transition: background 0.3s ease;
    }

    .header.scrolled .menu-toggle span {
      background: var(--text-main);
    }

    /* ── EYEBROW & TITLES ── */
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--honey);
      margin-bottom: 0.8rem;
      display: inline-block;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 2.2rem;
      border-radius: var(--r-btn);
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-honey {
      background: var(--honey);
      color: var(--white);
      border-color: var(--honey);
      box-shadow: 0 4px 14px rgba(217, 155, 38, 0.25);
    }

    .btn-honey:hover {
      background: var(--honey-dark);
      border-color: var(--honey-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(217, 155, 38, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-main);
      border-color: var(--border);
    }

    .btn-outline:hover {
      background: var(--bg-secondary);
      border-color: var(--text-main);
      transform: translateY(-2px);
    }

    .btn-salvia {
      background: var(--salvia);
      color: var(--white);
      border-color: var(--salvia);
      box-shadow: 0 4px 14px rgba(92, 111, 89, 0.25);
    }

    .btn-salvia:hover {
      background: var(--salvia-dark);
      border-color: var(--salvia-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(92, 111, 89, 0.35);
    }

    .btn-white {
      background: var(--white);
      color: var(--salvia);
      border-color: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .btn-white:hover {
      background: var(--bg-primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* ── HERO ── */
    .hero-sec {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      height: 90vh;
      min-height: 650px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-bg-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(45, 37, 34, 0.60);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 850px;
      padding: 13rem 2rem 5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    .hero-content .eyebrow {
      color: var(--honey-light);
      margin-bottom: 1.2rem;
    }

    .hero-content h1 {
      color: var(--white);
      font-size: clamp(2.3rem, 5vw, 3.8rem);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .hero-desc {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.75;
      margin-bottom: 2.5rem;
      max-width: 680px;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-actions {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3.5rem;
    }

    .hero-actions .btn-outline {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-actions .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
      border-color: var(--white);
    }

    .hero-stats {
      display: flex;
      gap: 1.5rem;
      padding-top: 2rem;
      border-top: none;
      width: 100%;
      justify-content: center;
      flex-wrap: nowrap;
    }

    .stat-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      background: rgba(45, 39, 36, 0.70);
      padding: 0.6rem 1.2rem;
      border-radius: var(--r-md);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: all 0.3s ease;
      min-width: auto;
      justify-content: flex-start;
      gap: 0.8rem;
    }

    .stat-item:hover {
      background: rgba(45, 39, 36, 0.85);
      border-color: var(--honey);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .stat-num {
      font-family: var(--font-serif);
      font-size: 2.6rem;
      font-weight: 600;
      color: var(--honey);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-icon {
      color: var(--honey);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .stat-item:hover .stat-icon {
      transform: scale(1.1);
    }

    .stat-icon svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
    }

    .stat-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.2;
      text-align: left;
    }

    .summer-banner {
      position: absolute;
      bottom: 25px;
      right: 25px;
      background: var(--white);
      border-left: 5px solid var(--honey);
      padding: 1rem 1.5rem;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-lg);
      max-width: 320px;
      z-index: 10;
      animation: float 6s ease-in-out infinite;
      text-align: left;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    .summer-title {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 0.3rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .summer-text {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ── SECTIONS GENERAL ── */
    .sec {
      padding: 7rem 2rem;
      border-top: 1px solid var(--border);
    }

    .sec-bg {
      background: var(--bg-secondary);
    }

    .sec-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .sec-inner-sm {
      max-width: 800px;
      margin: 0 auto;
    }

    .sec-header {
      margin-bottom: 4.5rem;
      text-align: center;
    }

    .sec-header.align-left {
      text-align: left;
      max-width: 700px;
    }

    h2 {
      font-size: clamp(2rem, 3.2vw, 2.8rem);
      margin-bottom: 1.2rem;
      letter-spacing: -0.015em;
    }

    .sec-lead {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto;
    }

    .align-left .sec-lead {
      margin: 0;
    }

    /* ── CÓMO FUNCIONA (PILARES) ── */
    .intro-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 5rem;
      align-items: center;
    }

    .intro-text h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .intro-text p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

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

    .pillar-card {
      background: var(--white);
      padding: 3rem 2.2rem;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(229, 223, 200, 0.5);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
    }

    .pillar-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--honey);
    }

    .pillar-num {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--salvia);
      line-height: 1;
      margin-bottom: 1.5rem;
      transition: color 0.3s;
    }

    .pillar-card:hover .pillar-num {
      color: var(--salvia-dark);
    }

    .pillar-card h4 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .pillar-card p {
      font-size: 0.88rem;
      line-height: 1.65;
    }

    /* ── QUÉ VAS A APRENDER (TÉCNICAS) ── */
    .techniques-showcase {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: center;
    }

    .tech-list {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
    }

    .tech-item {
      display: flex;
      gap: 1.5rem;
    }

    .tech-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--honey-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--honey);
      font-weight: 600;
    }

    .tech-info h4 {
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
    }

    .tech-info p {
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .tech-visual {
      position: relative;
    }

    .tech-image-wrapper {
      box-shadow: var(--shadow-lg);
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    /* ── WORKSHOP DE SÁBADO ── */
    .intensivos-banner {
      background: linear-gradient(135deg, var(--salvia) 0%, var(--salvia-dark) 100%);
      border-radius: var(--r-lg);
      padding: 5rem 4rem;
      color: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .intensivos-banner::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
      pointer-events: none;
    }

    .intensivos-content h3 {
      font-size: 2.2rem;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .intensivos-content p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.02rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .intensivos-features {
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
    }

    .int-feat-item {
      background: rgba(255, 255, 255, 0.06);
      padding: 1.5rem 1.8rem;
      border-radius: var(--r-md);
      border-left: 4px solid var(--honey);
    }

    .int-feat-item h4 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }

    .int-feat-item p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    /* ── TARIFAS ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.2rem;
      margin-bottom: 4.5rem;
    }

    .price-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 3rem 2.2rem;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-sm);
    }

    .price-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--honey);
    }

    .price-card.featured {
      border: 2px solid var(--honey);
      transform: scale(1.03);
    }

    .price-card.featured:hover {
      transform: scale(1.03) translateY(-8px);
    }

    .badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--honey);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.4rem 1.2rem;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(217, 155, 38, 0.2);
    }

    .badge-sábado {
      background: var(--salvia);
      box-shadow: 0 4px 10px rgba(92, 111, 89, 0.2);
    }

    .card-category {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
      display: block;
    }

    .price-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .price-wrap {
      display: flex;
      align-items: baseline;
      margin-bottom: 1.8rem;
      padding-bottom: 1.8rem;
      border-bottom: 1px solid var(--border);
    }

    .price-num {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1;
    }

    .price-period {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-left: 0.4rem;
    }

    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-grow: 1;
    }

    .features-list li {
      font-size: 0.88rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .features-list li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--honey);
      flex-shrink: 0;
    }

    .price-card.featured .features-list li::before {
      background: var(--salvia);
    }

    .price-card .btn {
      width: 100%;
      white-space: nowrap;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      font-size: 0.85rem;
    }

    /* Payment and details Callout */
    .estimate-banner {
      background: var(--bg-secondary);
      border-radius: var(--r-md);
      padding: 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      border: 1px dashed var(--border);
    }

    .estimate-info h4 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .estimate-info p {
      font-size: 0.9rem;
      max-width: 650px;
    }

    .estimate-banner .btn {
      flex-shrink: 0;
    }

    /* ── BENEFICIOS ── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .benefit-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
    }

    .benefit-icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--honey);
      margin: 0 auto 1.8rem;
      transition: all 0.3s;
    }

    .benefit-card:hover .benefit-icon-wrapper {
      background: var(--honey);
      color: var(--white);
      transform: scale(1.08);
      box-shadow: 0 8px 20px rgba(217, 155, 38, 0.2);
    }

    .benefit-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .benefit-card p {
      font-size: 0.88rem;
      line-height: 1.7;
    }

    /* ── SOSTENIBILIDAD (EL ESPACIO Y VALORES) ── */
    .sustainability-sec {
      position: relative;
      background: none;
      color: var(--white);
      border-top: none;
      padding: 8rem 0;
      overflow: hidden;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .sustain-bg-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .sustain-bg-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sustain-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(45, 37, 34, 0.65);
      z-index: 2;
    }

    .sustainability-sec .sec-inner {
      position: relative;
      z-index: 3;
      padding: 0 2rem;
    }

    .sustainability-sec h2,
    .sustainability-sec .eyebrow {
      color: var(--white);
    }

    .sustainability-sec .eyebrow {
      opacity: 0.9;
      color: var(--honey-light);
    }

    .sustainability-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 5rem;
      align-items: center;
    }

    .sustain-intro p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .sustain-img-wrapper {
      display: none;
    }

    .sustain-pillars {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
    }

    .sustain-item {
      background: rgba(74, 68, 65, 0.85);
      padding: 2.2rem;
      border-radius: var(--r-md);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.3s;
    }

    .sustain-item:hover {
      background: rgba(74, 68, 65, 0.95);
      border-color: var(--honey);
      transform: translateY(-2px);
    }

    .sustain-item h4 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .sustain-item p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* ── OPINIONES / RESEÑAS ── */
    .reviews-container {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 4.5rem;
      align-items: center;
    }

    .reviews-badge {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 3.5rem 2.5rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .badge-score {
      font-family: var(--font-serif);
      font-size: 3.8rem;
      font-weight: 700;
      color: var(--honey);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .badge-stars {
      color: #F5C249;
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }

    .badge-info {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.5rem;
    }

    .badge-trust {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }

    .review-card {
      background: var(--white);
      border-radius: var(--r-md);
      padding: 2.2rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(229, 223, 200, 0.4);
      position: relative;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .reviewer-name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .review-stars {
      color: #F5C249;
      font-size: 0.85rem;
    }

    .review-text {
      font-size: 0.88rem;
      line-height: 1.65;
      font-style: italic;
    }

    .review-source {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 1rem;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ── FAQ ── */
    .faq-stack {
      margin-top: 2rem;
    }

    details {
      border-bottom: 1px solid var(--border);
      padding: 0.5rem 0;
    }

    summary {
      list-style: none;
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-main);
      padding: 1.4rem 0.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      user-select: none;
      transition: color 0.3s;
    }

    summary:hover {
      color: var(--honey);
    }

    summary::-webkit-details-marker {
      display: none;
    }

    .faq-plus {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--text-muted);
      transition: transform 0.3s, color 0.3s;
      line-height: 1;
    }

    details[open] .faq-plus {
      transform: rotate(45deg);
      color: var(--honey);
    }

    .faq-body {
      padding: 0 0.5rem 1.6rem;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      padding: 5rem 2rem 3rem;
      color: var(--text-muted);
    }

    .footer-grid {
      max-width: 1000px;
      margin: 0 auto 3rem;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 4.5rem;
    }

    .footer-col-links {
      padding-left: 2rem;
    }

    .footer-col h4 {
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--text-main);
      margin-bottom: 1.6rem;
    }

    .footer-brand {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 1rem;
      display: inline-block;
      text-decoration: none;
    }

    .footer-brand span {
      color: var(--honey);
    }

    .footer-brand-desc {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      max-width: 340px;
    }

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

    .footer-contact-list li {
      font-size: 0.88rem;
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }

    .footer-contact-list svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      fill: var(--honey);
      margin-top: 0.2rem;
    }

    .footer-contact-list strong {
      color: var(--text-main);
    }

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

    .footer-links-list a {
      font-size: 0.88rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }

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

    .footer-compromiso p {
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
    }

    /* ── ANIMACIONES DE DESPLAZAMIENTO ── */
    .r {
      opacity: 0;
      transform: translateY(2rem);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .r.in {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: 0.1s;
    }

    .d2 {
      transition-delay: 0.2s;
    }

    .d3 {
      transition-delay: 0.3s;
    }

    /* ── RESPONSIVO ── */
    @media (max-width: 1100px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .about-visual {
        max-width: 500px;
        margin: 0 auto;
        order: 2; /* Image below text on mobile */
      }
      .about-content {
        order: 1; /* Text above image on mobile */
      }
      .about-visual::after {
        display: none;
      }
      .hero-sec {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 3rem;
      }

      .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }

      .intro-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .techniques-showcase {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

      .intensivos-banner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 3rem;
      }

      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

      .reviews-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

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

      .menu-toggle {
        display: block;
      }

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

      .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .estimate-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }

      .footer-col-links {
        padding-left: 0 !important;
      }

      .footer-contact-list li {
        justify-content: center;
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding-top: 1.5rem;
        border-top: none;
      }
      .stat-item {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 1.2rem 1.5rem;
      }
      .stat-num {
        font-size: 2rem;
      }
      .stat-icon svg {
        width: 32px;
        height: 32px;
      }
      .stat-label {
        font-size: 0.65rem;
      }
      .summer-banner {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .r {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .summer-banner {
        animation: none;
      }
    }

    /* ── GALERÍA DE FOTOS DEL TALLER ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: var(--shadow-sm);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

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

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to top, rgba(45, 37, 34, 0.85) 0%, rgba(45, 37, 34, 0) 100%);
      color: var(--white);
      padding: 2rem 1.2rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      pointer-events: none;
    }

    .gallery-item:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }

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

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

    /* ── SECCIÓN DE MAGUI SPLIT 50/50 ── */
    .magui-sec {
      background: var(--honey-light);
      border-top: 1px solid var(--border);
      padding: 0;
      overflow: hidden;
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .magui-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      min-height: 550px;
    }

    .magui-content {
      padding: 6rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 620px;
      margin-left: auto;
    }

    .magui-visual {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 450px;
    }

    .magui-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 0;
    }

    .magui-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--honey);
      color: var(--white);
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.2rem;
      align-self: flex-start;
    }

    .magui-content h2 {
      color: var(--text-main);
      margin-bottom: 1.5rem;
    }

    .magui-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
    }

    @media (max-width: 1024px) {
      .magui-grid {
        grid-template-columns: 1fr;
      }
      .magui-content {
        padding: 5rem 2rem;
        max-width: 100%;
        margin: 0;
      }
      .magui-visual {
        min-height: 450px;
      }
    }

    /* ── MAPA / UBICACIÓN ── */
    .map-wrapper {
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      aspect-ratio: 16 / 9;
      width: 100%;
      margin-top: 3rem;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (max-width: 768px) {
      .map-wrapper {
        aspect-ratio: 4 / 3;
      }
    }

    /* Google Reviews Styles */
    .google-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      margin-bottom: 1rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-main);
    }
    .google-brand svg {
      width: 18px;
      height: 18px;
    }
    .google-verified-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--salvia);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      margin-top: 1.5rem;
      transition: color 0.3s;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    /* ── CALLOUT DE CITA ── */
    .quote-callout {
      background: var(--bg-primary);
      padding: 6rem 2rem;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }

    .quote-callout-inner {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.8rem;
    }

    .quote-badge {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--salvia);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      position: relative;
    }

    .quote-badge::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--honey);
      margin: 0.8rem auto 0;
    }

    .quote-callout p {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.3rem, 3.2vw, 1.9rem);
      color: var(--text-main);
      line-height: 1.6;
      font-weight: 400;
    }

    /* ── CROSS-SELL BANNER (Taller <-> Servicio) ── */
    .cross-sell {
      background: var(--salvia-light);
      padding: 4.5rem 2rem;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }

    .cross-sell-inner {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
    }

    .cross-sell-inner h3 {
      font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .cross-sell-inner p {
      color: var(--text-muted);
    }

    .cross-sell-inner .btn {
      margin-top: 0.8rem;
    }

    .quote-author {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ── SOBRE MÍ ── */
    .about-sec {
      background: var(--white);
    }

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

    .about-visual {
      position: relative;
    }

    .about-visual::after {
      content: '';
      position: absolute;
      top: 1.5rem;
      left: -1.5rem;
      width: 100%;
      height: 100%;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      z-index: 1;
    }

    .about-visual img {
      position: relative;
      z-index: 2;
      width: 100%;
      box-shadow: var(--shadow-md);
    }

    .about-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .about-signature {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--honey-dark);
      margin-top: 1rem;
    }

    /* ── RESPONSIVO (Colocado al final para correcto orden de cascada) ── */
    @media (max-width: 1024px) {
      .magui-grid {
        grid-template-columns: 1fr;
      }
      .magui-content {
        padding: 5rem 2rem;
        max-width: 100%;
        margin: 0;
      }
      .magui-visual {
        min-height: 450px;
      }
    }

    @media (max-width: 768px) {
      .map-wrapper {
        aspect-ratio: 4 / 3;
      }
    }

    @media (max-width: 1100px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .about-visual {
        max-width: 500px;
        margin: 0 auto;
        order: 2; /* Image below text on mobile */
      }
      .about-content {
        order: 1; /* Text above image on mobile */
      }
      .about-visual::after {
        display: none;
      }
      .hero-sec {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 3rem;
      }

      .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }

      .intro-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .techniques-showcase {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

      .intensivos-banner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 3rem;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }

      .footer-col-links {
        padding-left: 0 !important;
      }

      .footer-contact-list li {
        justify-content: center;
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .nav-links a:not(.nav-cta) {
        color: var(--text-main) !important;
      }
      .nav-links a:not(.nav-cta):hover {
        color: var(--honey) !important;
      }
      .nav-links a::after {
        display: none !important;
      }
      .hero-sec {
        height: auto !important;
        min-height: 100vh;
        padding: 6.5rem 0 3.5rem !important;
      }
      .hero-content {
        padding: 0 1.5rem !important;
      }
      .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: none;
      }
      .stat-item {
        width: 100%;
        max-width: 250px;
        min-width: auto;
        padding: 0.6rem 1rem;
      }
      .stat-icon svg {
        width: 24px;
        height: 24px;
      }
      .stat-label {
        font-size: 0.65rem;
      }
      .summer-banner {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin-bottom: 2.5rem;
      }
      .hero-actions .btn {
        width: 100%;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .r {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .summer-banner {
        animation: none;
      }
    }
