    /* ============================================
       CSS VARIABLES & RESET
    ============================================ */
    :root {
      /* Colores corporativos */
      --orange: #F47B20;
      --orange-light: #FF9A45;
      --orange-dark: #D4620E;
      --orange-pale: #FFF4EA;
      --orange-mid: #FDECD8;

      /* Blancos y grises claros */
      --white: #FFFFFF;
      --off-white: #FAFAF8;
      --cream: #FFF8F3;
      --gray-50: #F9F9F7;
      --gray-100: #F2F2EF;
      --gray-200: #E8E8E4;
      --border: #EBEBEB;

      /* Negros y oscuros (más suaves) */
      --dark: #1C1C1C;
      --dark-2: #262626;
      --dark-soft: #333333;
      --mid: #666666;
      --light: #9A9A9A;

      /* Efectos */
      --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
      --shadow-orange: 0 8px 32px rgba(244,123,32,0.25);

      --radius: 16px;
      --radius-sm: 10px;
      --radius-xs: 6px;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================
       UTILITY
    ============================================ */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .section { padding: 96px 0; }
    .section--alt { background: var(--cream); }
    .section--white { background: var(--white); }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .label--white { color: rgba(255,255,255,0.7); }
    .label--white::before { background: rgba(255,255,255,0.5); }

    h2.section-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.8vw, 2.75rem);
      font-weight: 700;
      line-height: 1.18;
      margin-bottom: 16px;
      color: var(--dark);
    }

    h2.section-title--white { color: var(--white); }

    .section-sub {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 540px;
      line-height: 1.75;
    }

    .section-sub--white { color: rgba(255,255,255,0.65); }

    /* ============================================
       BUTTONS
    ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 14px 26px;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(244,123,32,0.30);
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      box-shadow: 0 6px 28px rgba(244,123,32,0.40);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.40);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.7);
      transform: translateY(-2px);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--dark);
      border: 1.5px solid var(--gray-200);
    }

    .btn-outline-dark:hover {
      border-color: var(--orange);
      color: var(--orange);
      transform: translateY(-2px);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
      box-shadow: 0 4px 20px rgba(37,211,102,0.28);
    }

    .btn-whatsapp:hover {
      background: #1ebe5a;
      box-shadow: 0 6px 28px rgba(37,211,102,0.38);
      transform: translateY(-2px);
    }

    /* ============================================
       NAVBAR
    ============================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      padding: 16px 0;
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    }

    .navbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo con imagen real */
    .navbar__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .navbar__logo-img {
      height: 44px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
      transition: var(--transition);
    }

    .navbar.scrolled .navbar__logo-img {
      filter: none;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      transition: color var(--transition);
    }

    .navbar.scrolled .logo-name { color: var(--dark); }

    .logo-tagline {
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--orange-light);
      font-weight: 600;
    }

    .navbar.scrolled .logo-tagline { color: var(--orange); }

    /* Navegación por secciones */
    .navbar__links {
      display: flex;
      align-items: center;
      gap: 30px;
      flex: 1;
      justify-content: center;
    }

    .navbar__links a {
      position: relative;
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255,255,255,0.78);
      padding: 4px 2px;
      transition: color var(--transition);
      white-space: nowrap;
    }

    .navbar__links a::after {
      content: '';
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -3px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      transition: right var(--transition);
    }

    .navbar__links a:hover { color: var(--white); }
    .navbar__links a:hover::after { right: 0; }

    .navbar.scrolled .navbar__links a { color: var(--dark-soft); }
    .navbar.scrolled .navbar__links a:hover { color: var(--orange); }

    .navbar__cta {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-shrink: 0;
    }

    .navbar__phone {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .navbar.scrolled .navbar__phone { color: var(--dark); }
    .navbar__phone:hover { color: var(--orange) !important; }

    /* ============================================
       HERO — Imagen real de fondo con equipo
    ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-2);
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* Overlay sobre imagen real */
    .hero__bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      opacity: 0.22;
      filter: grayscale(20%);
    }

    .hero__bg-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(26,26,26,0.97) 0%, rgba(26,26,26,0.88) 40%, rgba(26,26,26,0.55) 70%, rgba(26,26,26,0.3) 100%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(244,123,32,0.12) 0%, transparent 65%);
    }

    .hero__ring {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1.5px solid rgba(244,123,32,0.12);
      opacity: 0.6;
      pointer-events: none;
    }

    .hero__ring::before {
      content: '';
      position: absolute;
      inset: 50px;
      border-radius: 50%;
      border: 1px solid rgba(244,123,32,0.08);
    }

    .hero__ring::after {
      content: '';
      position: absolute;
      inset: 110px;
      border-radius: 50%;
      border: 0.5px solid rgba(244,123,32,0.05);
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding: 140px 0 100px;
      max-width: 620px;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(244,123,32,0.14);
      border: 1px solid rgba(244,123,32,0.28);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--orange-light);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s 0.2s forwards;
    }

    .hero__badge-dot {
      width: 6px; height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2.2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.4); }
    }

    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 4.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s forwards;
    }

    .hero__title em {
      font-style: normal;
      color: var(--orange-light);
    }

    .hero__subtitle {
      font-size: 1.08rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.75;
      margin-bottom: 44px;
      max-width: 500px;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s forwards;
    }

    .hero__cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 56px;
      opacity: 0;
      animation: fadeUp 0.7s 0.65s forwards;
    }

    .hero__stats {
      display: flex;
      gap: 36px;
      opacity: 0;
      animation: fadeUp 0.7s 0.8s forwards;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.10);
    }

    .hero__stat-value {
      display: block;
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--orange-light);
      line-height: 1;
    }

    .hero__stat-label {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.45);
      margin-top: 5px;
      letter-spacing: 0.02em;
    }

    .hero__stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.10);
      align-self: stretch;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Imagen flotante del equipo en el hero */
    .hero__team-float {
      position: absolute;
      right: 80px;
      bottom: 0;
      top: 0;
      width: 46%;
      z-index: 1;
      display: flex;
      align-items: flex-end;
    }

    .hero__team-float img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 40%), linear-gradient(to top, transparent 0%, rgba(0,0,0,0.8) 20%);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 40%), linear-gradient(to top, transparent 0%, rgba(0,0,0,0.8) 20%);
      opacity: 0.45;
      filter: grayscale(15%);
    }

    /* ============================================
       BENEFITS STRIP
    ============================================ */
    .benefits-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }

    .benefits-strip__inner {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 28px 24px;
      border-right: 1px solid var(--border);
      transition: var(--transition);
      cursor: default;
    }

    .benefit-item:last-child { border-right: none; }

    .benefit-item:hover { background: var(--orange-pale); }

    .benefit-icon {
      width: 42px; height: 42px;
      background: var(--orange-pale);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .benefit-item:hover .benefit-icon {
      background: var(--orange);
    }

    .benefit-icon svg { width: 19px; height: 19px; stroke: var(--orange); fill: none; stroke-width: 1.8; transition: var(--transition); }
    .benefit-item:hover .benefit-icon svg { stroke: white; }

    .benefit-text strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.3;
    }

    .benefit-text span {
      font-size: 0.76rem;
      color: var(--light);
    }

    /* ============================================
       TEAM SECTION — Nueva sección con fotos reales
    ============================================ */
    .team {
      background: var(--white);
    }

    .team__header {
      text-align: center;
      margin-bottom: 64px;
    }

    .team__header .section-sub {
      margin: 0 auto;
      text-align: center;
    }

    .team__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: stretch;
    }

    .team-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
    }

    .team-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-5px);
      border-color: var(--orange);
    }

    .team-card__img-wrap {
      position: relative;
      overflow: hidden;
      height: 280px;
    }

    .team-card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.5s ease;
    }

    .team-card:hover .team-card__img-wrap img {
      transform: scale(1.04);
    }

    .team-card__img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,26,0.65) 0%, transparent 55%);
    }

    .team-card__accent {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      opacity: 0;
      transition: var(--transition);
    }

    .team-card:hover .team-card__accent { opacity: 1; }

    .team-card__body {
      padding: 24px 26px 26px;
    }

    .team-card__tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-pale);
      padding: 4px 10px;
      border-radius: 50px;
      margin-bottom: 10px;
    }

    .team-card__title {
      font-family: var(--font-display);
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .team-card__desc {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.65;
    }

    /* ============================================
       SERVICES
    ============================================ */
    .services__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 24px;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      display: block;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 30px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .service-card--featured {
      background: var(--dark);
      border-color: var(--dark);
    }

    .service-card:hover {
      border-color: var(--orange);
      box-shadow: 0 8px 36px rgba(244,123,32,0.14);
      transform: translateY(-4px);
    }

    .service-card--featured:hover {
      border-color: var(--orange);
      box-shadow: 0 8px 36px rgba(244,123,32,0.20);
    }

    .service-card__accent {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
      opacity: 0;
      transition: var(--transition);
    }

    .service-card:hover .service-card__accent { opacity: 1; }
    .service-card--featured .service-card__accent { opacity: 1; }

    .service-card__icon {
      width: 50px; height: 50px;
      background: var(--orange-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .service-card--featured .service-card__icon { background: rgba(244,123,32,0.15); }

    .service-card__icon svg { width: 23px; height: 23px; stroke: var(--orange); fill: none; stroke-width: 1.8; }

    .service-card__tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-pale);
      padding: 4px 10px;
      border-radius: 50px;
      margin-bottom: 11px;
    }

    .service-card--featured .service-card__tag { background: rgba(244,123,32,0.15); }

    .service-card__title {
      font-family: var(--font-display);
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .service-card--featured .service-card__title { color: var(--white); }

    .service-card__desc {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.68;
    }

    .service-card--featured .service-card__desc { color: rgba(255,255,255,0.52); }

    /* ============================================
       WHY CHOOSE US — Con imagen real
    ============================================ */
    .why {
      position: relative;
      overflow: hidden;
    }

    .why::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,123,32,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .why__visual {
      position: relative;
    }

    .why__img-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .why__img-real {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center top;
      display: block;
      border-radius: var(--radius);
      transition: transform 0.5s ease;
    }

    .why__img-wrap:hover .why__img-real {
      transform: scale(1.03);
    }

    .why__img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(244,123,32,0.08) 0%, transparent 60%);
      border-radius: var(--radius);
    }

    .why__badge-float {
      position: absolute;
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid var(--border);
    }

    .why__badge-float--tl {
      bottom: -20px;
      right: -20px;
    }

    .why__badge-float--br {
      top: -20px;
      left: -20px;
    }

    .why__badge-icon {
      width: 38px; height: 38px;
      background: var(--orange-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why__badge-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; }

    .why__badge-value {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
    }

    .why__badge-label {
      font-size: 0.72rem;
      color: var(--light);
      margin-top: 2px;
    }

    .why__features {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-top: 40px;
    }

    .why__feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .why__feature-check {
      width: 32px; height: 32px;
      background: var(--orange-pale);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why__feature-check svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2.5; }

    .why__feature-text strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 3px;
      color: var(--dark);
    }

    .why__feature-text p {
      font-size: 0.84rem;
      color: var(--mid);
      line-height: 1.6;
    }

    /* ============================================
       GALLERY STRIP — Tira de fotos del local
    ============================================ */
    .gallery-strip {
      background: var(--gray-50);
      padding: 0;
      overflow: hidden;
    }

    .gallery-strip__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      height: 380px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .gallery-item__overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,26,26,0.0);
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item:hover .gallery-item__overlay {
      background: rgba(244,123,32,0.18);
    }

    /* ============================================
       TESTIMONIALS
    ============================================ */
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px 28px;
      transition: var(--transition);
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px; right: 24px;
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--orange-pale);
      line-height: 1;
      pointer-events: none;
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--orange);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .testimonial-stars span {
      color: var(--orange);
      font-size: 0.95rem;
    }

    .testimonial-text {
      font-size: 0.93rem;
      color: var(--mid);
      line-height: 1.72;
      margin-bottom: 22px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .testimonial-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      color: white;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--dark);
    }

    .testimonial-location {
      font-size: 0.76rem;
      color: var(--light);
    }

    /* ============================================
       CONTACT / LOCATION
    ============================================ */
    .contact__layout {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      gap: 64px;
      align-items: start;
    }

    .contact__info-items {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 36px;
      margin-bottom: 36px;
    }

    .contact__info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact__info-icon {
      width: 42px; height: 42px;
      background: var(--orange-pale);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact__info-icon svg { width: 19px; height: 19px; stroke: var(--orange); fill: none; stroke-width: 1.8; }

    .contact__info-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 4px;
    }

    .contact__info-value {
      font-size: 0.93rem;
      color: var(--dark);
      font-weight: 500;
      line-height: 1.55;
    }

    .contact__cta-btns {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 440px;
      background: var(--border);
      border: 1px solid var(--border);
    }

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

    /* ============================================
       CTA FINAL
    ============================================ */
    .cta-final {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .cta-final__bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.07;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 85% 50%, rgba(244,123,32,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 20%, rgba(244,123,32,0.07) 0%, transparent 60%);
    }

    .cta-final__inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-final__title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.18;
    }

    .cta-final__title em {
      font-style: normal;
      color: var(--orange-light);
    }

    .cta-final__sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.52);
      margin-bottom: 44px;
      line-height: 1.7;
    }

    .cta-final__btns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background: #111111;
      padding: 52px 0 36px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer__main {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .footer__brand-logo {
      height: 48px;
      width: auto;
      object-fit: contain;
      margin-bottom: 16px;
      filter: brightness(1.1);
    }

    .footer__brand-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer__col-title {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 18px;
    }

    .footer__col-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer__col-links a {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.38);
      transition: color var(--transition);
    }

    .footer__col-links a:hover { color: var(--orange); }

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

    .footer__copy {
      font-size: 0.79rem;
      color: rgba(255,255,255,0.22);
    }

    .footer__social {
      display: flex;
      gap: 12px;
    }

    .footer__social-link {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .footer__social-link:hover {
      background: var(--orange);
    }

    .footer__social-link svg {
      width: 16px; height: 16px;
      fill: rgba(255,255,255,0.5);
      transition: var(--transition);
    }

    .footer__social-link:hover svg { fill: white; }

    /* ============================================
       WHATSAPP FLOAT
    ============================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 900;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 28px rgba(37,211,102,0.42);
      transition: var(--transition);
      animation: fadeUp 1s 1.2s both;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) translateY(-3px);
      box-shadow: 0 10px 36px rgba(37,211,102,0.52);
    }

    .whatsapp-float svg { width: 27px; height: 27px; fill: white; }

    .whatsapp-float__tooltip {
      position: absolute;
      right: 66px;
      background: var(--dark);
      color: white;
      font-size: 0.80rem;
      font-weight: 600;
      padding: 7px 13px;
      border-radius: 8px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
      box-shadow: var(--shadow);
    }

    .whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

    .whatsapp-float__pulse {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.35);
      animation: waPulse 2.5s infinite;
    }

    @keyframes waPulse {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(1.55); opacity: 0; }
    }

    /* ============================================
       BOTÓN DISCRETO EMPLEADOS
    ============================================ */
    .staff-access {
      position: fixed;
      bottom: 30px;
      left: 30px;
      z-index: 900;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Solo visible para quien hace hover en la zona o conoce el shortcut */
    .staff-access:hover,
    .staff-access:focus-within {
      opacity: 1;
    }

    /* Un pequeño punto discreto que activa la visibilidad */
    .staff-access__trigger {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(244,123,32,0.25);
      border: 1px solid rgba(244,123,32,0.4);
      cursor: pointer;
      transition: var(--transition);
      display: block;
    }

    .staff-access__trigger:hover ~ .staff-access__link,
    .staff-access__link:hover {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .staff-access__link {
      position: absolute;
      bottom: 16px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(26,26,26,0.88);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.75);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 7px 12px;
      border-radius: 8px;
      white-space: nowrap;
      text-decoration: none;
      border: 1px solid rgba(244,123,32,0.2);
      opacity: 0;
      transform: translateY(4px);
      transition: all 0.25s ease;
      pointer-events: none;
    }

    .staff-access:hover .staff-access__link {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .staff-access__link svg {
      width: 13px; height: 13px;
      stroke: var(--orange-light);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    .staff-access__link:hover {
      background: rgba(244,123,32,0.15);
      color: white;
    }

    /* ============================================
       SCROLL ANIMATIONS
    ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================
       RESPONSIVE — TABLET
    ============================================ */
    @media (max-width: 1024px) {
      .navbar__links { display: none; }

      .benefits-strip__inner { grid-template-columns: repeat(3, 1fr); }
      .benefit-item:nth-child(3) { border-right: 1px solid var(--border); }
      .benefit-item:nth-child(3n) { border-right: none; }

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

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

      .why__layout { grid-template-columns: 1fr; gap: 48px; }
      .why__visual { max-width: 520px; }

      .gallery-strip__grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:last-child { display: none; }

      .contact__layout { grid-template-columns: 1fr; }
      .map-wrapper { height: 340px; }

      .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }

      .hero__team-float { display: none; }
    }

    /* ============================================
       RESPONSIVE — MOBILE
    ============================================ */
    @media (max-width: 640px) {
      .section { padding: 72px 0; }
      .container { padding: 0 20px; }

      .navbar__phone { display: none; }

      .hero__content { padding: 120px 0 80px; }
      .hero__stats { gap: 20px; flex-wrap: wrap; }
      .hero__cta { flex-direction: column; }
      .hero__cta .btn { width: 100%; justify-content: center; }

      .benefits-strip__inner { grid-template-columns: 1fr 1fr; }
      .benefit-item { padding: 20px 16px; }
      .benefit-item:nth-child(3) { border-right: none; }
      .benefit-item:nth-child(even) { border-right: none; }

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

      .services__header { flex-direction: column; align-items: flex-start; gap: 10px; }
      .services__grid { grid-template-columns: 1fr; }

      .why__badge-float--br { display: none; }
      .why__badge-float--tl { bottom: -14px; right: -8px; padding: 10px 14px; }

      .gallery-strip__grid { grid-template-columns: 1fr; height: auto; }
      .gallery-item { height: 220px; }
      .gallery-item:nth-child(2), .gallery-item:nth-child(3) { display: none; }

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

      .cta-final__btns .btn { width: 100%; justify-content: center; }

      .footer__main { grid-template-columns: 1fr; gap: 28px; }
      .footer__bottom { flex-direction: column; align-items: center; text-align: center; }

      .whatsapp-float { bottom: 20px; right: 20px; }

      .staff-access { bottom: 20px; left: 16px; }

      .services__see-all { display: none; }
    }

    /* ============================================
       PÁGINAS DE SERVICIO INTERNAS
    ============================================ */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--mid);
      padding: 108px 0 18px;
    }
    .breadcrumb a { color: var(--mid); transition: color var(--transition); }
    .breadcrumb a:hover { color: var(--orange); }
    .breadcrumb span[aria-current] { color: var(--dark); font-weight: 600; }
    .breadcrumb .sep { color: var(--light); }

    .page-hero {
      background: linear-gradient(135deg, var(--orange-pale) 0%, var(--cream) 100%);
      padding: 48px 0 72px;
      position: relative;
      overflow: hidden;
    }
    .page-hero__inner { max-width: 720px; }
    .page-hero__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.2vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--dark);
      margin: 14px 0 18px;
    }
    .page-hero__title em { font-style: italic; color: var(--orange); }
    .page-hero__sub {
      font-size: 17px;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 560px;
    }
    .page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

    .content-block { padding: 88px 0; }
    .content-block__grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
    }
    .content-block__grid--reverse .content-block__img { order: -1; }
    .content-block__img img {
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .content-block__text p { color: var(--mid); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
    .content-block__text h2 { margin-bottom: 18px; }

    .benefit-check-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }

    .steps-list { counter-reset: step; display: grid; gap: 24px; margin-top: 40px; }
    .steps-list__item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 22px 24px;
    }
    .steps-list__num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--orange);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 17px;
    }
    .steps-list__item h3 { font-size: 17px; margin-bottom: 6px; }
    .steps-list__item p { color: var(--mid); font-size: 15px; line-height: 1.7; }

    .faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      padding: 20px 24px;
      font-weight: 600;
      font-size: 15.5px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 22px;
      color: var(--orange);
      flex-shrink: 0;
      transition: transform var(--transition);
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item__body { padding: 0 24px 22px; color: var(--mid); font-size: 15px; line-height: 1.75; }

    .related-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .related-services__card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 24px;
      transition: var(--transition);
      display: block;
    }
    .related-services__card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
    .related-services__card strong { display: block; font-size: 15.5px; margin-bottom: 6px; color: var(--dark); }
    .related-services__card span { font-size: 13.5px; color: var(--orange); font-weight: 600; }

    @media (max-width: 860px) {
      .content-block { padding: 56px 0; }
      .content-block__grid { grid-template-columns: 1fr; gap: 32px; }
      .content-block__grid--reverse .content-block__img { order: 0; }
      .page-hero { padding: 32px 0 48px; }
      .related-services { grid-template-columns: 1fr; }
    }
