  :root {
    --orange: #F07A1A;
    --orange-light: #FFF3E8;
    --orange-dark: #C55E0A;
    --dark: #1E1E1E;
    --dark2: #2E2E2E;
    --gray: #6B6B6B;
    --gray-light: #F7F5F2;
    --white: #FFFFFF;
    --border: #E5E0D8;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .logo-circle {
    width: 42px; height: 42px; border-radius: 50%;
    border: 3px solid var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.5px;
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--dark);
  }
  .nav-brand span { color: var(--orange); }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: var(--white) !important;
    padding: 0.6rem 1.4rem; border-radius: 50px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 5rem;
    gap: 4rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 80px solid var(--orange-light);
    opacity: 0.6;
    z-index: 0;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-tag {
    display: inline-block;
    background: var(--orange-light); color: var(--orange);
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 0.4rem 1rem; border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700; line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal; color: var(--orange);
  }
  .hero-desc {
    font-size: 1.05rem; color: var(--gray);
    max-width: 480px; line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid var(--dark); color: var(--dark);
    padding: 0.85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

  .hero-pillars {
    display: flex; gap: 2rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
  }
  .pillar { text-align: center; }
  .pillar-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--orange-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
  }
  .pillar strong {
    display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark);
  }
  .pillar span { font-size: 0.78rem; color: var(--gray); }

  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%; max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  }
  .hero-card-ring {
    width: 120px; height: 120px; border-radius: 50%;
    border: 8px solid var(--orange);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--dark);
  }
  .services-mini { display: flex; flex-direction: column; gap: 0.8rem; }
  .service-mini-item {
    display: flex; align-items: center; gap: 12px;
    padding: 0.75rem 1rem;
    background: var(--gray-light);
    border-radius: 12px;
    font-size: 0.88rem; font-weight: 500;
    color: var(--dark);
  }
  .service-mini-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
  }

  /* SECTIONS */
  section { padding: 6rem 4rem; }
  .section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--orange); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; line-height: 1.2;
    color: var(--dark); margin-bottom: 1.2rem;
  }
  .section-title em { font-style: normal; color: var(--orange); }
  .section-sub {
    font-size: 1rem; color: var(--gray);
    max-width: 580px; line-height: 1.8;
  }

  /* FILOSOFIA */
  .filosofia { background: var(--gray-light); }
  .filosofia-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 3.5rem;
    border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  }
  .filosofia-col {
    padding: 2.5rem; border-right: 1px solid var(--border);
  }
  .filosofia-col:last-child { border-right: none; }
  .filosofia-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--orange);
    margin-bottom: 0.3rem; padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
  }
  .filosofia-col p {
    font-size: 0.95rem; color: var(--gray); margin-top: 1rem; line-height: 1.7;
  }
  .valores-list { list-style: none; margin-top: 1rem; }
  .valores-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--dark); font-weight: 500;
    padding: 0.45rem 0;
  }
  .valores-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
  }

  /* SERVICIOS */
  .servicios-header { text-align: center; margin-bottom: 4rem; }
  .servicios-header .section-sub { margin: 0 auto; }
  .servicios-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .servicio-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
  }
  .servicio-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .servicio-card:hover::before { transform: scaleX(1); }
  .servicio-card:hover {
    box-shadow: 0 12px 40px rgba(240,122,26,0.1);
    transform: translateY(-3px);
  }
  .servicio-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--orange-light); line-height: 1;
    margin-bottom: 0.5rem;
  }
  .servicio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--dark); margin-bottom: 0.8rem;
  }
  .servicio-card p {
    font-size: 0.92rem; color: var(--gray); line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .servicio-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .tag {
    background: var(--orange-light); color: var(--orange);
    font-size: 0.75rem; font-weight: 600;
    padding: 0.3rem 0.8rem; border-radius: 50px;
  }

  /* PROCESO */
  .proceso { background: var(--dark); color: var(--white); }
  .proceso .section-title { color: var(--white); }
  .proceso .section-sub { color: rgba(255,255,255,0.6); }
  .proceso-steps {
    display: flex; gap: 0; margin-top: 4rem;
    position: relative;
  }
  .proceso-steps::before {
    content: '';
    position: absolute; top: 28px; left: 0; right: 0; height: 2px;
    background: rgba(255,255,255,0.1);
  }
  .proceso-step { flex: 1; padding: 0 1.5rem; position: relative; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--white);
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .proceso-step h4 {
    font-weight: 600; font-size: 0.95rem;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .proceso-step p {
    font-size: 0.83rem; color: rgba(255,255,255,0.55);
    line-height: 1.65;
  }

  /* METODOLOGÍA */
  .metodologia-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .fases-circle {
    position: relative; width: 420px; height: 420px;
    margin: 0 auto;
  }
  .fase-items { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
  .fase-item {
    display: flex; gap: 1rem;
    padding: 1.2rem; border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color 0.2s, background 0.2s;
  }
  .fase-item:hover { border-color: var(--orange); background: var(--orange-light); }
  .fase-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .fase-text h5 { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.2rem; }
  .fase-text p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

  /* CONTACTO */
  .contacto {
    background: var(--orange);
    color: var(--white);
    text-align: center;
  }
  .contacto .section-title { color: var(--white); font-size: clamp(2rem, 3vw, 2.8rem); }
  .contacto .section-sub { color: rgba(255,255,255,0.85); margin: 0 auto 3rem; }
  .contacto-cards {
    display: flex; gap: 2rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 3rem;
  }
  .contacto-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    min-width: 240px;
    backdrop-filter: blur(8px);
  }
  .contacto-card .cc-name {
    font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem;
  }
  .contacto-card .cc-phone {
    font-size: 1.4rem; font-family: 'Playfair Display', serif;
    font-weight: 700;
  }
  .contacto-info {
    display: flex; gap: 3rem; justify-content: center;
    margin-bottom: 3rem; flex-wrap: wrap;
  }
  .ci-item { display: flex; align-items: center; gap: 10px; }
  .ci-item svg { flex-shrink: 0; }
  .ci-item span { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
  .btn-white {
    background: var(--white); color: var(--orange);
    padding: 1rem 2.5rem; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    display: inline-block;
    transition: transform 0.15s;
  }
  .btn-white:hover { transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--dark2);
    padding: 2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
  }
  footer p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
  footer .foot-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
  }
  footer .foot-logo span { color: var(--orange); }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2.5rem; }
    .hero::before { width: 300px; height: 300px; }
    .hero-visual { display: none; }
    .filosofia-grid { grid-template-columns: 1fr; }
    .filosofia-col { border-right: none; border-bottom: 1px solid var(--border); }
    .filosofia-col:last-child { border-bottom: none; }
    .servicios-grid { grid-template-columns: 1fr; }
    .proceso-steps { flex-direction: column; gap: 2rem; }
    .proceso-steps::before { display: none; }
    .metodologia-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { flex-direction: column; text-align: center; }
  }/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}


/* MENU HAMBURGUESA MODERNO */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 200;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.menu-toggle:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.menu-toggle:active {
  transform: scale(0.94);
}

.menu-toggle.active {
  background: var(--orange);
  border-color: var(--orange);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 99px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s ease, background 0.25s ease;
}

.menu-toggle.active span {
  background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* RESPONSIVE NAV */
@media (max-width: 900px) {
  nav {
    padding: 0.8rem 1.5rem;
    position: fixed;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: flex !important;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 0.8rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    z-index: 150;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links li {
    width: 100%;
    list-style: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.04s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.08s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.12s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.16s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.2s; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-links a:hover {
    background: var(--orange-light);
    color: var(--orange);
  }

  .nav-links .nav-cta {
    margin-top: 0.4rem;
    text-align: center;
    background: var(--orange);
    color: var(--white) !important;
  }
}







/* TARJETAS DE CONTACTO POR WHATSAPP */

.contacto-card-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contacto-card-whatsapp:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(112, 52, 0, 0.16);
}

.contacto-card-whatsapp:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.cc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  margin-top: 1rem;
  padding: 0.45rem 0.8rem;

  background-color: #25d366;
  color: #ffffff;

  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contacto-card-whatsapp:hover .cc-action {
  background-color: #1ebe5d;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}





/* =========================================
   INTRO DE CARGA
========================================= */

body.is-loading {
  overflow: hidden;
}

/* Transición de aparición de la página */
body > nav,
body > section,
body > footer {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

body.is-loading > nav,
body.is-loading > section,
body.is-loading > footer {
  opacity: 0;
  transform: translateY(10px);
}

/* Pantalla blanca */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 100vh;

  background-color: #ffffff;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

/* Desaparición de la introducción */
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(80%, 340px);
}

/* Logo */
.site-loader__logo {
  display: block;
  width: clamp(190px, 28vw, 310px);
  height: auto;

  opacity: 0;
  transform: translateY(12px) scale(0.94);

  animation: loader-logo-in 0.9s ease forwards;
}

/* Barra */
.site-loader__bar {
  position: relative;
  overflow: hidden;

  width: min(240px, 70vw);
  height: 7px;

  margin-top: 2rem;

  background-color: rgba(247, 121, 20, 0.18);
  border-radius: 50px;
}

/* Progreso naranja */
.site-loader__bar span {
  display: block;
  width: 100%;
  height: 100%;

  background-color: var(--orange, #f77914);
  border-radius: inherit;

  transform: scaleX(0);
  transform-origin: left center;

  animation: loader-progress 3.7s cubic-bezier(0.65, 0, 0.35, 1) 0.35s forwards;
}

/* Animación del logo */
@keyframes loader-logo-in {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animación de la barra */
@keyframes loader-progress {
  0% {
    transform: scaleX(0);
  }

  70% {
    transform: scaleX(0.78);
  }

  100% {
    transform: scaleX(1);
  }
}

/* Accesibilidad: reducir animaciones */
@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader__logo,
  .site-loader__bar span,
  body > nav,
  body > section,
  body > footer {
    animation: none;
    transition-duration: 0.01ms;
  }

  .site-loader__logo {
    opacity: 1;
    transform: none;
  }

  .site-loader__bar span {
    transform: scaleX(1);
  }
}