/* =========================================================
   Taller Danis — Design System
   Paleta: negro industrial + acero + naranja taller (automotriz premium)
   ========================================================= */

:root{
  /* Marca */
  --black:        #0B0B0C;
  --black-soft:   #18181B;
  --card:         #FFFFFF;
  --steel:        #8A8D93;
  --steel-light:  #C8CACE;
  --orange:       #FF7A1A;
  --orange-light: #FFAA55;
  --orange-dark:  #D9600A;
  --ink:          #180E05;

  /* Semántico */
  --bg:           #F1F0EC;
  --bg-soft:      #E9E7E1;
  --text:         #1C1B19;
  --text-soft:    #6B6864;
  --border:       rgba(20,18,15,.12);
  --shadow-orange: 0 20px 45px -20px rgba(217,96,10,.5);
  --shadow-soft:  0 12px 30px -12px rgba(11,11,12,.2);

  /* Tipografía */
  --font-display: 'Oswald', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-w: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* =========================== RESET =========================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll{ overflow: hidden; height:100%; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--black); margin:0; font-weight:600; text-transform:uppercase; letter-spacing:.01em; }
p{ margin:0; }
svg{ width:1em; height:1em; }

.container{
  width:100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold{ color: var(--orange-dark); font-style: normal; }

/* =========================== BOTONES =========================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight:700;
  font-size: .95rem;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn-icon{ width:1.15em; height:1.15em; flex-shrink:0; }
.btn-primary{
  background: linear-gradient(135deg, var(--orange-light), var(--orange) 45%, var(--orange-dark));
  color: var(--ink);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -18px rgba(217,96,10,.65);
}
.btn-outline{
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover{
  background: var(--text);
  color: var(--bg);
  transform: translateY(-3px);
}
.btn-lg{ padding: 17px 36px; font-size: 1rem; }
.btn-nav{ padding: 11px 26px; font-size: .85rem; }

/* =========================== LOADING SCREEN =========================== */
#loading-screen{
  position: fixed; inset:0; z-index: 9999;
  display:flex; align-items:center; justify-content:center;
  background: var(--black);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#loading-screen.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-inner{ position:relative; width:120px; height:120px; display:flex; align-items:center; justify-content:center; }
.loader-ring{
  position:absolute; inset:0;
  border-radius:50%;
  border: 2px solid rgba(255,122,26,.2);
  border-top-color: var(--orange);
  border-right-color: var(--orange-dark);
  animation: spin 1.1s linear infinite;
}
.loader-logo{
  width:64px; height:64px; object-fit:contain;
  animation: pulse-logo 1.6s ease-in-out infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes pulse-logo{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(.9); opacity:.75; }
}

/* =========================== HEADER =========================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 900;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(241,240,236,.9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 10px 0;
  box-shadow: 0 10px 30px -18px rgba(11,11,12,.3);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{ display:flex; align-items:center; gap:14px; min-width:0; }
.brand-logo-wrap{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
}
.brand-logo-wrap::before{
  content:''; position:absolute; inset:-14px; z-index:-1; border-radius:50%;
  background: radial-gradient(circle, rgba(255,170,85,.5), rgba(255,122,26,.16) 55%, transparent 75%);
  filter: blur(11px);
  animation: logo-glow-pulse 3.6s ease-in-out infinite;
}
@keyframes logo-glow-pulse{
  0%,100%{ opacity:.5; transform:scale(1); }
  50%{ opacity:.9; transform:scale(1.08); }
}
.brand-logo{
  height: 82px; width:auto; object-fit:contain;
  transition: height .4s var(--ease), transform .5s var(--ease), filter .5s var(--ease);
  filter: drop-shadow(0 8px 18px rgba(217,96,10,.45)) drop-shadow(0 2px 5px rgba(0,0,0,.35));
}
.brand-logo-wrap:hover .brand-logo{
  transform: scale(1.06) rotate(-1deg);
  filter: drop-shadow(0 10px 24px rgba(255,122,26,.65)) drop-shadow(0 2px 5px rgba(0,0,0,.4));
}
.is-scrolled .brand-logo{ height: 62px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; max-width: 260px; min-width:0; }
.brand-name{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: #fff;
  transition: color .4s var(--ease);
}
.is-scrolled .brand-name{ color: var(--black); }
.brand-tagline{
  font-size:.68rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: var(--orange-light);
  font-weight:600;
  transition: color .4s var(--ease);
  line-height:1.35;
}
.is-scrolled .brand-tagline{ color: var(--orange-dark); }

.main-nav{ display:flex; align-items:center; gap: 34px; }
.main-nav ul{ display:flex; align-items:center; gap: 32px; }
.nav-link{
  position:relative; font-weight:600; font-size:1.02rem; color: rgba(255,255,255,.92);
  padding: 4px 0; text-transform:uppercase; letter-spacing:.03em; font-size:.92rem;
  transition: color .4s var(--ease);
}
.is-scrolled .nav-link{ color: var(--text); }
.nav-link::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  transition: right .35s var(--ease);
}
.nav-link:hover::after{ right:0; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; border-radius:50%;
  background: var(--card); border:1px solid var(--border);
  cursor:pointer;
}
.nav-toggle span{
  display:block; width:20px; height:2px; margin:0 auto;
  background: var(--text); transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================== HERO =========================== */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; align-items:center;
  overflow:hidden;
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255,122,26,.16), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255,122,26,.12), transparent 55%),
    linear-gradient(160deg, #0B0B0C 0%, #17171A 55%, #1F1B17 100%);
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(90deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.72) 48%, rgba(11,11,12,.35) 100%),
    url('https://images.unsplash.com/photo-1786489283624-f46637419822?auto=format&fit=crop&w=2400&q=85') center right / cover no-repeat;
  opacity:.82;
}
#particles-canvas{
  position:absolute; inset:0; width:100%; height:100%; z-index:1;
}
.hero-glow{
  position:absolute; z-index:1; pointer-events:none;
  width:60vw; height:60vw; max-width:900px; max-height:900px;
  top:-10%; right:-15%;
  background: radial-gradient(circle, rgba(255,122,26,.22), transparent 70%);
  filter: blur(10px);
  animation: float-glow 12s ease-in-out infinite alternate;
}
@keyframes float-glow{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-40px, 40px) scale(1.08); }
}
.hero-inner{ position:relative; z-index:2; max-width: 780px; }

.eyebrow{
  display:inline-block;
  font-size:.8rem; letter-spacing:.24em; text-transform:uppercase;
  color: var(--orange-dark); font-weight:700; margin-bottom: 18px;
}
.hero .eyebrow{ color: var(--orange-light); }

.hero-title{
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height:1.08;
  margin-bottom: 22px;
  font-weight:700;
  color:#fff;
}
.gradient-text{
  background-image: linear-gradient(100deg, #ffffff 0%, var(--orange-light) 25%, var(--orange) 50%, var(--orange-light) 75%, #ffffff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 7s linear infinite;
}
@keyframes shimmer-text{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 300% 50%; }
}

.hero-typewriter{
  font-family: var(--font-display);
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 22px;
  min-height: 1.6em;
}
.typewriter-word{ color: var(--orange-light); font-weight:600; }
.typewriter-cursor{
  display:inline-block; margin-left:2px; color: var(--orange-light);
  animation: blink-cursor 1s step-end infinite;
}
@keyframes blink-cursor{ 50%{ opacity:0; } }

.hero-desc{
  font-size: 1.08rem; color: rgba(255,255,255,.68); max-width: 560px; margin-bottom: 40px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap: 18px; }
.hero .btn-outline{ border-color: rgba(255,255,255,.55); color:#fff; }
.hero .btn-outline:hover{ background:#fff; color: var(--black); }
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-proof span{
  display:inline-flex;
  align-items:center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.scroll-indicator{
  position:absolute; bottom: 36px; left:50%; transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px; border: 2px solid var(--orange-light);
  z-index:2;
}
.scroll-indicator span{
  position:absolute; top:8px; left:50%; transform: translateX(-50%);
  width:4px; height:8px; border-radius:2px; background: var(--orange-light);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot{
  0%{ opacity:1; top:8px; }
  70%{ opacity:0; top:22px; }
  100%{ opacity:0; top:8px; }
}

/* =========================== REVEAL ON SCROLL =========================== */
.reveal{
  opacity:0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* =========================== SECTION SHARED =========================== */
main > section{ padding: 110px 0; position:relative; scroll-margin-top: 96px; }
.section-head{ max-width: 700px; margin: 0 auto 64px; text-align:center; }
.section-head .eyebrow{ display:block; }
.section-title{
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height:1.15; margin: 10px 0 18px;
}
.section-desc{ color: var(--text-soft); font-size: 1.05rem; }

/* =========================== ABOUT (imagen con fondo propio) =========================== */
.about{ background: var(--card); }
.about-grid{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items:center;
}
.about-media{ position:relative; }
.about-media-frame{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-media-frame img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.about-media:hover .about-media-frame img{ transform: scale(1.05); }
.about-media-badge{
  position:absolute; bottom:-28px; right:-28px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--ink);
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: var(--shadow-orange);
  text-align:center;
  min-width:140px;
}
.badge-number{ display:block; font-family: var(--font-display); font-size:2.2rem; font-weight:700; line-height:1; }
.badge-label{ font-size:.72rem; letter-spacing:.05em; font-weight:600; text-transform:none; }

.about-content .section-desc{ margin-bottom: 40px; }
.about-pillars{ display:flex; flex-direction:column; gap: 26px; }
.pillar{ display:flex; gap: 18px; align-items:flex-start; }
.pillar-icon{
  flex-shrink:0; width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg); color: var(--orange-dark);
  border: 1px solid var(--border);
}
.pillar-icon svg{ width:24px; height:24px; }
.pillar h3{ font-size:1.1rem; margin-bottom:6px; text-transform:none; }
.pillar p{ color: var(--text-soft); font-size:.96rem; }

/* =========================== NUESTRO TALLER (CARRUSEL) =========================== */
.workshop{
  background:
    radial-gradient(ellipse at 15% 15%, rgba(255,122,26,.14), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(255,122,26,.1), transparent 55%),
    linear-gradient(160deg, #0B0B0C 0%, #17171A 55%, #1F1B17 100%);
  position: relative;
  overflow: hidden;
}
.workshop .eyebrow{ color: var(--orange-light); }
.workshop .section-title{ color: #fff; }
.workshop .section-desc{ color: rgba(241,240,236,.68); }

.workshop-carousel{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.carousel-viewport{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.65);
  aspect-ratio: 4 / 3;
}
.carousel-track{
  display: flex;
  height: 100%;
  transition: transform .7s var(--ease);
}
.carousel-slide{
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img{
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-slide-overlay{
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 30px;
  background: linear-gradient(180deg, rgba(11,11,12,0) 42%, rgba(11,11,12,.82) 100%);
}
.carousel-index{
  font-family: var(--font-display);
  color: var(--orange-light);
  font-size: .8rem;
  letter-spacing: .18em;
  margin-bottom: 8px;
}
.carousel-slide-overlay p{
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  max-width: 520px;
}

.carousel-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,11,12,.55);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 2;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.carousel-arrow svg{ width: 22px; height: 22px; }
.carousel-arrow:hover{
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--ink);
  border-color: transparent;
  transform: translateY(-50%) scale(1.06);
}
.carousel-arrow--prev{ left: 16px; }
.carousel-arrow--next{ right: 16px; }

.carousel-dots{
  display: flex; justify-content: center; gap: 10px; margin-top: 26px;
}
.carousel-dot{
  width: 10px; height: 10px; border-radius: 50%; padding: 0; border: none;
  background: rgba(241,240,236,.25);
  cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.carousel-dot.is-active{
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  transform: scale(1.3);
}

/* =========================== SERVICES =========================== */
.services{ background: var(--bg); }
.service-category{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items:center;
  margin-bottom: 90px;
}
.service-category:last-of-type{ margin-bottom: 60px; }
.service-category--reverse{ direction: rtl; }
.service-category--reverse > *{ direction: ltr; }
.service-cat-media{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3.4;
}
.service-cat-media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.service-category:hover .service-cat-media img{ transform: scale(1.06); }

.service-cat-tag{
  display:inline-block; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase;
  color: var(--orange-dark); font-weight:700; margin-bottom:10px;
}
.service-cat-content h3{ font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom:10px; }
.service-cat-desc{ color: var(--text-soft); margin-bottom: 22px; }
.service-list{ display:flex; flex-direction:column; gap: 13px; }
.service-list li{
  position:relative; padding-left: 30px; font-size:.98rem; color: var(--text);
}
.service-list li::before{
  content:''; position:absolute; left:0; top:6px; width:16px; height:16px; border-radius:50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
}
.service-list li::after{
  content:''; position:absolute; left:5px; top:9.5px; width:6px; height:3px;
  border-left:2px solid var(--card); border-bottom:2px solid var(--card);
  transform: rotate(-45deg);
}

.services-cta{
  text-align:center; padding-top: 20px; border-top:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center; gap: 20px;
}
.services-cta p{ color: var(--text-soft); font-size:1.05rem; }

/* =========================== PARALLAX BANNERS (con fondo: imagen o video) =========================== */
.parallax-banner{
  position:relative;
  height: 52vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.parallax-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.parallax-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(11,11,12,.6), rgba(11,11,12,.72));
}
.parallax-content{ position:relative; z-index:2; text-align:center; }
.parallax-content .eyebrow{ color: var(--orange-light); }
.parallax-content h2{
  color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight:600;
}

/* iOS/Android no soportan bien background-attachment:fixed → fallback a scroll normal */
@media (hover:none), (max-width: 900px){
  .parallax-banner{ background-attachment: scroll; }
}

/* =========================== WHY US =========================== */
.why-us{ background: var(--card); }
.features-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.feature-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align:center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-orange);
  border-color: var(--orange);
}
.feature-icon{
  width:58px; height:58px; margin: 0 auto 20px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--ink);
}
.feature-icon svg{ width:26px; height:26px; }
.feature-card h3{ font-size:1.05rem; margin-bottom:10px; text-transform:none; }
.feature-card p{ color: var(--text-soft); font-size:.92rem; }

/* =========================== GALLERY =========================== */
.gallery{ background: var(--bg); }
.gallery-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.gallery-item{
  border-radius: 14px; overflow:hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
  position:relative;
}
.gallery-item::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,12,.45));
  opacity:0; transition: opacity .4s var(--ease);
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-caption{
  position:absolute; left:0; right:0; bottom:0; z-index:1;
  padding: 16px; font-size:.82rem; font-weight:600; color:#fff;
  opacity:0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .gallery-caption{ opacity:1; transform: translateY(0); }

/* =========================== CONTACT =========================== */
.contact{ background: var(--card); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.contact-list{ display:flex; flex-direction:column; gap: 20px; margin: 32px 0; }
.contact-list li{ display:flex; align-items:flex-start; gap: 14px; font-size:.98rem; }
.contact-list li svg{ width:22px; height:22px; color: var(--orange-dark); flex-shrink:0; margin-top:2px; }
.contact-list li a{ font-weight:700; }
.contact-list li a:hover{ color: var(--orange-dark); }
.quote-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.quote-card-media{ aspect-ratio: 16/9; overflow:hidden; }
.quote-card-media img{ width:100%; height:100%; object-fit:cover; }
.quote-form{
  display:grid;
  gap: 16px;
  padding: 28px;
}
.quote-form label{
  display:grid;
  gap: 7px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 800;
}
.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  letter-spacing:0;
  text-transform:none;
  padding: 13px 14px;
  outline:none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.quote-form textarea{ resize: vertical; min-height: 112px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,26,.14);
}
.quote-form .btn{ width:100%; }
.form-note{
  min-height: 1.4em;
  color: var(--orange-dark);
  font-size: .9rem;
  font-weight: 700;
}

/* =========================== MAPA DE UBICACIÓN =========================== */
.map-card{
  margin-top: 64px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-frame{
  width: 100%;
  aspect-ratio: 21 / 8;
}
.map-frame iframe{ width:100%; height:100%; display:block; }
.map-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  flex-wrap: wrap;
}
.map-card-info{ display:flex; flex-direction:column; gap:4px; }
.map-card-label{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--black);
}
.map-card-address{ color: var(--text-soft); font-size: .92rem; }
.map-card-hours{ color: var(--orange-dark); font-size: .88rem; font-weight: 700; margin-top: 2px; }
.map-card-footer .btn{ flex-shrink:0; }

/* =========================== FOOTER =========================== */
.site-footer{ background: var(--black); color: rgba(241,240,236,.72); padding-top: 80px; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(241,240,236,.12);
}
.site-footer .brand-name{ color: var(--bg); }
.site-footer .brand-tagline{ color: var(--orange-light); }
.footer-brand p{ margin-top:18px; font-size:.92rem; line-height:1.7; }
.footer-hours{
  display:flex; flex-direction:column; gap:8px;
  margin-top:20px; padding-top:20px;
  border-top:1px solid rgba(241,240,236,.12);
}
.footer-hours li{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-size:.86rem;
}
.footer-hours li span:first-child{ color: rgba(241,240,236,.55); }
.footer-hours li span:last-child{ color: var(--orange-light); font-weight:700; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.social-btn{
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(241,240,236,.08); color: var(--bg);
  border:1px solid rgba(241,240,236,.14);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.social-btn svg{ width:19px; height:19px; }
.social-btn:hover{ background: var(--orange); color: var(--black); transform: translateY(-3px); }
.footer-col h4{
  color: var(--orange-light); font-family: var(--font-body); font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase; margin-bottom: 20px; font-weight:700;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 12px; font-size:.92rem; }
.footer-col a:hover{ color: var(--orange-light); }
.footer-payments li{ display:flex; align-items:center; gap:10px; }
.footer-payments svg{ width:18px; height:18px; color: var(--orange-light); flex-shrink:0; }
.footer-bottom{ padding: 26px 0; text-align:center; font-size:.82rem; }

/* =========================== WHATSAPP FLOAT =========================== */
.whatsapp-float{
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  width: 58px; height: 58px; border-radius:50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.55);
  animation: pulse-whatsapp 2.6s ease-in-out infinite;
}
.whatsapp-float svg{ width:30px; height:30px; }
@keyframes pulse-whatsapp{
  0%,100%{ box-shadow: 0 14px 30px -8px rgba(37,211,102,.55); }
  50%{ box-shadow: 0 14px 30px -8px rgba(37,211,102,.85), 0 0 0 10px rgba(37,211,102,.12); }
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns: 1fr; gap: 56px; }
  .about-media{ max-width: 460px; margin: 0 auto; }
  .service-category, .service-category--reverse{ grid-template-columns: 1fr; direction: ltr; }
  .service-cat-media{ aspect-ratio: 16/9; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed; inset: 0 0 0 auto; width: min(340px, 82vw);
    background: var(--black);
    flex-direction: column; align-items:flex-start; justify-content:flex-start;
    padding: 110px 32px 40px; gap: 40px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.5);
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap: 26px; width:100%; }
  .main-nav .nav-link{ color: rgba(255,255,255,.92); font-size:1.2rem; }
  .btn-nav{ width:100%; text-align:center; }
  .nav-toggle{ display:flex; }

  main > section{ padding: 80px 0; }
  .hero{ padding: 140px 0 80px; min-height: unset; }
  .hero::before{
    background:
      linear-gradient(180deg, rgba(11,11,12,.88) 0%, rgba(11,11,12,.82) 52%, rgba(11,11,12,.72) 100%),
      url('https://images.unsplash.com/photo-1786489283624-f46637419822?auto=format&fit=crop&w=1400&q=85') center / cover no-repeat;
  }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
  .hero-proof{ flex-direction:column; align-items:stretch; }
  .hero-proof span{ justify-content:center; text-align:center; }
  .about-media-badge{ right: 10px; bottom:-20px; }
  .map-frame{ aspect-ratio: 16 / 10; }
  .map-card-footer{ flex-direction: column; align-items: flex-start; }
  .map-card-footer .btn{ width: 100%; text-align:center; }
  .carousel-arrow{ width: 42px; height: 42px; }
  .carousel-arrow svg{ width: 18px; height: 18px; }
  .carousel-arrow--prev{ left: 10px; }
  .carousel-arrow--next{ right: 10px; }
  .carousel-slide-overlay{ padding: 18px 20px; }
  .carousel-slide-overlay p{ font-size: .95rem; }
}

@media (max-width: 640px){
  .brand-logo{ height: 62px; }
  .is-scrolled .brand-logo{ height: 50px; }
  .brand-name{ font-size: 1.5rem; }
  .brand-text{ max-width: 176px; }
  .brand-tagline{ font-size: .58rem; letter-spacing:.1em; }
  .features-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
  .parallax-banner{ height: 42vh; min-height: 300px; }
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .map-card{ margin-top: 44px; }
  .map-frame{ aspect-ratio: 4 / 3.6; }
  .map-card-footer{ padding: 18px 20px; }
  .carousel-viewport{ aspect-ratio: 4 / 4.2; }
  .carousel-index{ font-size: .7rem; }
  .carousel-slide-overlay p{ font-size: .88rem; }
}

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior:auto !important; }
  .parallax-video{ display:none; }
}
