*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:      #C0392B;
      --red-d:    #A93226;
      --red-pale: #FDECEA;
      --dark:     #1A1A1A;
      --ink:      #2D2D2D;
      --mid:      #555;
      --steel:    #777;
      --border:   #D8D8D8;
      --bg:       #F7F7F5;
      --bg2:      #FFFFFF;
      --light:    #F0EFEB;
      --white:    #FFFFFF;
      --radius:   3px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    
    .tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo-img { height: 32px; width: auto; display: block; margin-top: -4px; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--steel);
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--dark); color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .88rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 9px 20px; border-radius: var(--radius);
      text-decoration: none; transition: background .2s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--red); }

    #inicio {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 100px 0 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(160deg, rgba(26,26,26,0.1) 30%, rgba(26,26,26,0.75) 100%),
        linear-gradient(to bottom, rgba(26,26,26,.2) 0%, rgba(26,26,26,.65) 100%),
       
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 60px,
        rgba(192,57,43,.03) 60px, rgba(192,57,43,.03) 61px
      );
      background-color: #1A1A1A;
    }
    .hero-content { position: relative; z-index: 1; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      margin-bottom: 48px;
    }

    .hero-logo-col {
      display: flex; justify-content: center; align-items: center;
      opacity: 0;
    }
    .hero-logo-wrap {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      cursor: default;
    }
    .hero-logo-3d {
      position: relative;
      transform: perspective(700px) rotateY(6deg) rotateX(-4deg);
      transition: transform 0.18s cubic-bezier(.25,.46,.45,.94);
      will-change: transform;
    }
    .hero-logo-big {
      display: block;
      filter:
        drop-shadow(0 24px 60px rgba(0,0,0,0.55))
        drop-shadow(0 0 50px rgba(192,57,43,0.22));
      width: 650px;
      max-width: 100%;
    }
    .hero-logo-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-text-col { }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.25);
      padding: 6px 14px; border-radius: 2px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.9); margin-bottom: 24px;
      opacity: 0; 
    }
    .hero-badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3.5rem, 9vw, 8rem);
      font-weight: 800; line-height: .9; letter-spacing: -.01em;
      color: var(--white); text-transform: uppercase; margin-bottom: 24px;
      opacity: 0;
    }
    .hero-title em { font-style: normal; color: var(--red); }
    .hero-sub {
      font-size: 1.05rem; font-weight: 400;
      color: rgba(255,255,255,.75);
      max-width: 440px; line-height: 1.65;
      opacity: 0;
    }

    .hero-brands {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 28px;
    }
    .hero-brand-item {
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.30);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius);
      padding: 10px 14px;
      backdrop-filter: blur(8px);
      transition: background .25s, border-color .25s, transform .2s, box-shadow .2s;
      opacity: 0;
      min-height: 50px;
    }
    .hero-brand-item:hover {
      background: #fff;
      border-color: rgba(192,57,43,.4);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,.18);
    }
    .brand-logo-img {
      max-height: 40px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
      display: block;
      filter: none;
      transition: filter .2s;
    }
    .brand-logo-lg { max-height: 65px; }

    .hero-phones {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center;
    }
    .phone-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--white); color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem; font-weight: 700; letter-spacing: .04em;
      padding: 14px 28px; border-radius: var(--radius);
      text-decoration: none; transition: background .2s, transform .15s;
      opacity: 0;
    }
    .phone-btn:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
    .phone-btn.ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,.4);
      color: rgba(255,255,255,.9);
    }
    .phone-btn.ghost:hover { border-color: var(--red); color: var(--white); background: var(--red); }
    .hero-scroll {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: rgba(255,255,255,.45);
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(192,57,43,.8), transparent);
      animation: scrollpulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollpulse {
      0%,100% { opacity: .4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.15); }
    }

    section { padding: 96px 0; }
    .section-header { margin-bottom: 56px; }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800; text-transform: uppercase;
      line-height: 1; color: var(--dark);
    }
    .section-title span { color: var(--red); }
    .divider { width: 40px; height: 3px; background: var(--red); margin-top: 16px; }

    #nosotros { background: var(--white); }
    .nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .nosotros-img { position: relative; }
    .nosotros-img img {
      width: 100%; border-radius: var(--radius); display: block;
      filter: grayscale(15%) contrast(1.05);
      border: 2px solid var(--red);
    }
    .nosotros-text p { color: var(--mid); margin-bottom: 16px; font-size: 1rem; }
    .stats-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.8rem; font-weight: 800; color: var(--dark); line-height: 1;
    }
    .stat-label { font-size: .98rem; font-weight: 500; color: var(--steel); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

    #servicios { background: var(--bg); }
    .servicios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .servicio-card {
      background: var(--white); padding: 48px 40px;
      position: relative; overflow: hidden;
      transition: background .25s, box-shadow .25s;
    }
    .servicio-card:hover { background: var(--bg2); box-shadow: 0 8px 32px rgba(0,0,0,.06); }
    .servicio-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 0; background: var(--red); transition: height .35s ease;
    }
    .servicio-card:hover::before { height: 100%; }
    .servicio-icon { width: 52px; height: 52px; margin-bottom: 24px; display: block; color: var(--red); }
    .servicio-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.45rem; font-weight: 700; text-transform: uppercase;
      color: var(--dark); margin-bottom: 16px;
    }
    .servicio-list { list-style: none; color: var(--mid); font-size: 1rem; }
    .servicio-list li {
      padding: 7px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .servicio-list li::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

    .cta-strip {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 100% at 100% 50%, rgba(192,57,43,.18) 0%, transparent 70%),
        repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(192,57,43,.03) 60px, rgba(192,57,43,.03) 61px);
    }
    .cta-inner {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      min-height: 220px;
    }
    .cta-col-left {
      padding: 52px 48px 52px 0;
      display: flex; flex-direction: column; justify-content: center;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .cta-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--red); margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .cta-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); flex-shrink: 0; }
    .cta-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800; text-transform: uppercase;
      color: var(--white); line-height: 1.0;
      margin-bottom: 14px;
    }
    .cta-headline em { font-style: normal; color: var(--red); }
    .cta-desc {
      font-size: 1rem; color: rgba(255,255,255,.65);
      max-width: 320px; line-height: 1.6;
    }

    .cta-col-phones {
      padding: 52px 48px;
      display: flex; flex-direction: column; justify-content: center; gap: 6px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .cta-phones-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 10px;
    }
    .cta-phone-item {
      display: flex; align-items: center; gap: 12px;
    }
    .cta-phone-type {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--red);
      min-width: 52px;
    }
    .cta-phone-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem; font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: .02em;
      transition: color .2s;
    }
    .cta-phone-number:hover { color: var(--red); }
    .cta-phone-sep {
      height: 1px; background: rgba(255,255,255,.08); margin: 6px 0;
    }

    .cta-col-right {
      padding: 52px 0 52px 48px;
      display: flex; flex-direction: column; justify-content: center; gap: 14px;
    }
    .cta-btn {
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none;
      border-radius: var(--radius);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 15px 28px;
      transition: background .2s, color .2s, transform .15s;
      white-space: nowrap;
    }
    .cta-btn.primary {
      background: var(--red); color: var(--white);
    }
    .cta-btn.primary:hover { background: var(--red-d); transform: translateY(-2px); }
    .cta-btn.secondary {
      background: transparent;
      border: 1px solid rgba(255,255,255,.25);
      color: rgba(255,255,255,.85);
    }
    .cta-btn.secondary:hover { border-color: var(--red); background: rgba(192,57,43,.12); color: var(--white); }
    .cta-badge-horario {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .84rem; color: rgba(255,255,255,.45);
      margin-top: 4px;
    }
    .cta-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; animation: pulse-green 2s infinite; }
    @keyframes pulse-green {
      0%,100% { opacity: 1; } 50% { opacity: .4; }
    }

    @media (max-width: 900px) {
      .cta-inner { grid-template-columns: 1fr; min-height: auto; }
      .cta-col-left { padding: 48px 24px 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .cta-col-phones { padding: 32px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .cta-col-right { padding: 32px 24px 48px; }
    }
  
    #trayectoria { background: var(--white); }
    .pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pilar-card {
      border: 1px solid var(--border); padding: 40px 32px; border-radius: var(--radius);
      text-align: center; transition: border-color .25s, transform .25s, box-shadow .25s;
      background: var(--white);
    }
    .pilar-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,57,43,.08); }
    .pilar-icon { width: 44px; height: 44px; margin: 0 auto 20px; display: block; color: var(--red); }
    .pilar-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .05em;
      color: var(--dark); margin-bottom: 10px;
    }
    .pilar-text { color: var(--steel); font-size: 1rem; }

    #galeria { background: var(--bg); }

    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .galeria-item.galeria-hero {
      grid-column: 1 / -1;
      aspect-ratio: 21/7;
    }

    .galeria-item {
      overflow: hidden;
      border-radius: 2px;
      position: relative;
      background: var(--light);
      aspect-ratio: 4/3;
    }

    .galeria-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    }
    .galeria-item:hover img { transform: scale(1.06); }

    .galeria-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,26,26,.65) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .3s ease;
      display: flex; align-items: flex-end; padding: 18px 20px;
    }
    .galeria-item:hover .galeria-overlay { opacity: 1; }
    .galeria-overlay span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .8rem; font-weight: 700;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      padding: 3px 10px;
      border-radius: 1px;
    }

    footer { background: var(--dark); padding: 0; }
    .footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px; align-items: start;
    }
    .footer-brand {}
    .footer-logo { display: flex; align-items: flex-start; justify-content: flex-start; margin-bottom: 16px; }
    .footer-logo-img { height: 140px; width: auto; display: block; }
    .footer-tagline { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 220px; }
    .footer-contact-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
    .footer-contact-list li { display: flex; align-items: center; gap: 8px; }
    .footer-contact-list svg { color: var(--red); flex-shrink: 0; }
    .footer-contact-list a { font-size: .98rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-contact-list a:hover { color: var(--red); }
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-bottom: 20px;
    }
    .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-list a { font-size: 1rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-nav-list a:hover { color: var(--red); }
    .footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-hours-list li { font-size: .98rem; color: rgba(255,255,255,.75); display: flex; justify-content: space-between; gap: 16px; }
    .footer-hours-list .day { color: rgba(255,255,255,.5); }
    .footer-bottom { padding: 20px 0; }
    .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: .94rem; color: rgba(255,255,255,.45); }
    .footer-bottom-links { display: flex; gap: 20px; list-style: none; }
    .footer-bottom-links a { font-size: .94rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--red); }

    .reveal { opacity: 0; transform: translateY(28px); }

    @media (max-width: 768px) {
      .nosotros-grid, .contacto-grid { grid-template-columns: 1fr; }
      .nosotros-img { display: none; }
      .servicios-grid { grid-template-columns: 1fr; }
      .pilares-grid { grid-template-columns: 1fr 1fr; }
      .galeria-grid { grid-template-columns: 1fr 1fr; }
      .galeria-item.galeria-hero { aspect-ratio: 16/6; }
      .nav-links { display: none; }
      .stats-row { gap: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-logo-col { order: -1; }
      .hero-logo-big { width: clamp(160px, 50vw, 260px); }
      .hero-brands { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 480px) {
      .pilares-grid { grid-template-columns: 1fr; }
      .galeria-grid { grid-template-columns: 1fr; }
      .galeria-item.galeria-hero { aspect-ratio: 16/7; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-brands { grid-template-columns: 1fr; }
    }
    .footer-dev { font-size: .88rem; color: rgba(255,255,255,.35); }
    .footer-dev a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-dev a:hover { color: var(--red); }

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: rgba(26,26,26,.09);
  border-radius: var(--radius);
  padding: 2px;
  flex-shrink: 0;
}
.lang-slide {
  position: absolute;
  top: 2px; left: 0;
  height: calc(100% - 4px);
  background: var(--dark);
  border-radius: calc(var(--radius) - 1px);
  transition: transform .22s cubic-bezier(.4,0,.2,1), width .22s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.lang-btn {
  position: relative; z-index: 1;
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel);
  padding: 5px 9px;
  border-radius: calc(var(--radius) - 1px);
  transition: color .22s;
  line-height: 1;
  white-space: nowrap;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--ink); }

.goog-te-banner-frame,
.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
body { top: 0 !important; }