*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #0a0a0a; --black2: #111111; --white: #f5f5f0;
    --orange: #FF5C00; --gray: #1c1c1c; --gray2: #2a2a2a; --text-muted: #888;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 300; overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }
::selection { background: var(--orange); color: var(--black); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 22px 48px; transition: background 0.4s, padding 0.4s; }
nav.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); padding: 14px 48px; border-bottom: 1px solid rgba(255,92,0,0.15); }
.nav-logo img { height: 56px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: var(--black) !important; padding: 10px 22px !important; font-weight: 700 !important; opacity: 1 !important; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--white); }

/* HERO */
#hero { min-height: 100vh; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 0 48px; padding-top: 80px; position: relative; overflow: hidden; background: var(--black); }
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-corner-tl, .hero-corner-br { position: absolute; width: 50px; height: 50px; z-index: 2; pointer-events: none; }
.hero-corner-tl { top: 88px; left: 40px; }
.hero-corner-br { bottom: 32px; right: 40px; }
.hero-corner-tl::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--orange); }
.hero-corner-tl::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--orange); }
.hero-corner-br::before { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 2px; background: var(--orange); }
.hero-corner-br::after { content: ''; position: absolute; bottom: 0; right: 0; width: 2px; height: 100%; background: var(--orange); }
.hero-bg-text { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: clamp(280px, 35vw, 480px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,92,0,0.08); pointer-events: none; z-index: 1; white-space: nowrap; animation: fadeIn 1.5s ease 0.3s both; }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 5; background: rgba(255,255,255,0.05); overflow: hidden; }
.hero-progress::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(to right, transparent, var(--orange), transparent); animation: scanLine 3s ease-in-out infinite; }
@keyframes scanLine { 0% { left: -60%; } 100% { left: 110%; } }
.hero-lines { position: absolute; inset: 0; pointer-events: none; z-index: 1; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 100px); }
.hero-stats { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 28px; z-index: 5; animation: fadeIn 1s ease 1s both; }
.stat { text-align: right; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1; color: var(--orange); }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.hero-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.2s both; }
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--orange); }

/* ✅ H1 — Opción F con punto medio · */
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 9vw, 128px); line-height: 0.9; letter-spacing: -1px; position: relative; z-index: 5; animation: fadeUp 0.9s ease 0.35s both; }
.hero-title em { font-style: normal; -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.hero-title .accent { color: var(--orange); }
.hero-title .sep { color: var(--orange); }

/* ✅ Detalle geo debajo del título */
.hero-sub-geo { display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3vw, 38px); letter-spacing: 6px; color: rgba(245,245,240,0.55); margin-top: 8px; font-weight: 400; }
.hero-sub-geo .accent { color: var(--orange); -webkit-text-stroke: 0; }

.hero-sub { font-size: clamp(13px, 1.4vw, 16px); font-weight: 300; max-width: 520px; color: rgba(245,245,240,0.65); margin-top: 18px; line-height: 1.7; position: relative; z-index: 5; animation: fadeUp 1s ease 0.5s both; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 24px; position: relative; z-index: 5; animation: fadeUp 1s ease 0.65s both; }
.btn-primary { background: var(--orange); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 16px 36px; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: #ff7a2a; transform: translateY(-2px); }
.btn-ghost { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 16px 0; display: flex; align-items: center; gap: 10px; opacity: 0.65; transition: opacity 0.2s; }
.btn-ghost:hover { opacity: 1; }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* MARQUEE */
#clientes { padding: 48px 0; background: var(--orange); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 4px; text-transform: uppercase; color: var(--black); padding: 0 48px; display: flex; align-items: center; gap: 48px; }
.marquee-dot { width: 6px; height: 6px; background: rgba(10,10,10,0.35); border-radius: 50%; }

/* LOGOS */
#logos { background: var(--black2); padding: 56px 48px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logos-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 36px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.logos-label::before, .logos-label::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: rgba(255,255,255,0.1); }
.logos-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px; }
.logos-grid img { height: 36px; width: auto; filter: grayscale(100%) brightness(0.5); opacity: 0.6; transition: filter 0.3s, opacity 0.3s; object-fit: contain; }
.logos-grid img:hover { filter: grayscale(0%) brightness(1); opacity: 1; }

/* SECTIONS */
section { padding: 100px 48px; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--orange); }

/* NOSOTRAS */
#nosotras { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--black2); }
.nosotras-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.95; margin-bottom: 28px; }
.nosotras-text h2 em { font-style: normal; color: var(--orange); }
.nosotras-text p { font-size: 16px; line-height: 1.8; color: rgba(245,245,240,0.65); margin-bottom: 16px; }
.nosotras-image { position: relative; }
.nosotras-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(30%) contrast(1.05); position: relative; z-index: 1; }
.nosotras-image::before { content: ''; position: absolute; inset: -12px -12px 12px 12px; border: 1px solid rgba(255,92,0,0.3); pointer-events: none; z-index: 0; }
.nosotras-image::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(135deg, rgba(255,92,0,0.12) 0%, transparent 60%); }
.pill-feature { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.pill { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,92,0,0.4); color: var(--orange); padding: 7px 18px; transition: background 0.2s, color 0.2s; }
.pill:hover { background: var(--orange); color: var(--black); }

/* SERVICIOS */
#servicios { background: var(--black); }
.servicios-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.servicios-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.95; }
.servicios-header p { max-width: 340px; font-size: 15px; line-height: 1.7; color: rgba(245,245,240,0.5); text-align: right; }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.servicio-card { background: var(--gray); padding: 48px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.servicio-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.servicio-card:hover::before { transform: scaleX(1); }
.servicio-card:hover { background: var(--gray2); }
.num-wrap { position: relative; display: inline-block; margin-bottom: 20px; margin-left: -6px; line-height: 1; }
.num-base { font-family: 'Bebas Neue', sans-serif; font-size: 140px; line-height: 1; letter-spacing: -4px; color: transparent; -webkit-text-stroke: 1.5px rgba(255,92,0,0.25); display: block; user-select: none; }
.num-fill { font-family: 'Bebas Neue', sans-serif; font-size: 140px; line-height: 1; letter-spacing: -4px; color: var(--orange); display: block; position: absolute; top: 0; left: 0; user-select: none; clip-path: inset(100% 0 0 0); transition: clip-path 1.2s cubic-bezier(0.4,0,0.2,1); }
.servicio-card:hover .num-fill { clip-path: inset(0% 0 0 0); }
.servicio-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 14px; color: var(--white); }
.servicio-card p { font-size: 14px; line-height: 1.8; color: rgba(245,245,240,0.55); }
.servicio-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.s-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(255,255,255,0.05); padding: 4px 10px; color: var(--text-muted); }

/* ✅ TEXTO SEO */
#seo-text { background: var(--black); padding: 64px 48px; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.seo-inner { max-width: 760px; margin: 0 auto; }
.seo-h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(245,245,240,0.3); margin-bottom: 16px; line-height: 1.2; }
#seo-text p { font-size: 14px; line-height: 1.9; color: rgba(245,245,240,0.25); margin-bottom: 12px; max-width: 700px; }
#seo-text p:last-child { margin-bottom: 0; }

/* GALERÍA */
#galeria { background: var(--black2); padding: 100px 48px; }
#galeria .section-tag { margin-bottom: 12px; }
#galeria h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); margin-bottom: 40px; line-height: 0.95; }
.galeria-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: 320px 280px; gap: 4px; }
.galeria-item { overflow: hidden; position: relative; }
.galeria-item:nth-child(1) { grid-column: span 3; }
.galeria-item:nth-child(2) { grid-column: span 2; }
.galeria-item:nth-child(3), .galeria-item:nth-child(4), .galeria-item:nth-child(5), .galeria-item:nth-child(6), .galeria-item:nth-child(7) { grid-column: span 1; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%) contrast(1.05); transition: transform 0.5s ease, filter 0.5s ease; }
.galeria-item:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }
.galeria-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 16px 20px; }
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }

/* POR QUÉ */
#porque { background: var(--black); }
#porque .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
#porque h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.95; }
#porque h2 em { font-style: normal; color: var(--orange); }
.porque-lead { font-size: 16px; line-height: 1.8; color: rgba(245,245,240,0.55); margin-top: 24px; margin-bottom: 40px; }
.reasons { display: flex; flex-direction: column; }
.reason { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; transition: padding-left 0.3s; }
.reason:hover { padding-left: 8px; }
.reason-num { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--orange); padding-top: 4px; }
.reason h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.reason p { font-size: 14px; line-height: 1.7; color: rgba(245,245,240,0.5); }

/* CTA */
#cta-band { padding: 120px 48px; background: var(--gray); display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
#cta-band::before { content: 'SOMOS'; font-family: 'Bebas Neue', sans-serif; font-size: 280px; line-height: 1; color: rgba(255,255,255,0.02); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
#cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; position: relative; z-index: 1; margin-bottom: 24px; }
#cta-band h2 em { font-style: normal; color: var(--orange); }
#cta-band p { font-size: 17px; color: rgba(245,245,240,0.55); max-width: 480px; line-height: 1.7; position: relative; z-index: 1; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; position: relative; z-index: 1; }
.btn-wa { background: #25D366; color: #000; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 18px 40px; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); display: flex; align-items: center; gap: 10px; transition: transform 0.2s; }
.btn-wa:hover { transform: translateY(-3px); }

/* SUMATE */
#sumate { background: var(--black2); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
#sumate .sumate-img { position: relative; }
#sumate .sumate-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%); }
#sumate .sumate-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,92,0,0.15) 0%, transparent 50%); }
#sumate h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 72px); line-height: 0.95; margin-bottom: 20px; }
#sumate h2 em { font-style: normal; color: var(--orange); }
#sumate p { font-size: 15px; line-height: 1.8; color: rgba(245,245,240,0.55); margin-bottom: 12px; }
#sumate ul { list-style: none; margin: 24px 0 36px; }
#sumate ul li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(245,245,240,0.65); display: flex; align-items: center; gap: 10px; }
#sumate ul li::before { content: '→'; color: var(--orange); font-size: 12px; }

/* FOOTER */
footer { background: var(--black); padding: 60px 48px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-logo img { height: 64px; opacity: 0.85; }
.footer-logo p { font-size: 12px; color: var(--text-muted); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-links { display: flex; gap: 64px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom p { font-size: 12px; color: rgba(136,136,136,0.6); }
.footer-orange-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange); }

/* WHATSAPP FLOTANTE */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 9999; display: flex; align-items: center; gap: 0; text-decoration: none; cursor: pointer; }
.wa-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; color: #fff; background: #25D366; border-radius: 40px 0 0 40px; white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0; padding: 10px 0; transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, padding 0.4s ease; }
.wa-float:hover .wa-label { max-width: 160px; opacity: 1; padding: 10px 18px 10px 20px; }
.wa-icon { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: transform 0.3s ease, border-radius 0.4s ease; flex-shrink: 0; }
.wa-float:hover .wa-icon { transform: scale(1.08); border-radius: 0 50% 50% 0; }

/* PROVINCIAS */
#provincias { padding: 80px 80px; background: #080808; position: relative; overflow: hidden; }
#provincias::before { content: 'ARG'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 420px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,92,0,0.04); pointer-events: none; user-select: none; }
.prov-header { margin-bottom: 40px; max-width: 600px; }
.prov-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: #c8a96e; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.prov-eyebrow::before { content: ''; width: 24px; height: 1px; background: #c8a96e; flex-shrink: 0; }
.prov-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6vw, 80px); line-height: 0.88; color: #f5f5f0; margin-bottom: 12px; }
.prov-title em { font-style: normal; -webkit-text-stroke: 2px #c8a96e; color: transparent; }
.prov-divider { width: 48px; height: 2px; background: #FF5C00; margin-bottom: 14px; }
.prov-sub { font-family: 'Barlow', sans-serif; font-size: 13px; color: #888; max-width: 500px; font-weight: 300; line-height: 1.7; }
.prov-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.prov-map-side { position: relative; max-width: 480px; }
.prov-tooltip { position: absolute; top: 0; left: 0; background: #FF5C00; color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 2px; padding: 5px 12px; pointer-events: none; display: none; white-space: nowrap; z-index: 10; }
.prov-wa-tooltip { position: absolute; top: 0; left: 0; background: #080808; color: #f5f5f0; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1px; padding: 8px 14px; pointer-events: none; display: none; white-space: nowrap; z-index: 10; border: 1px solid rgba(37,211,102,0.3); border-left: 2px solid #25D366; }
.zoom-back { position: absolute; top: 15%; left: 0; transform: translateY(-50%); font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #c8a96e; cursor: pointer; display: none; border: 1px solid rgba(200,169,110,0.3); padding: 5px 12px; transition: background .2s; }
.zoom-back:hover { background: rgba(200,169,110,0.1); }
.prov-cards { display: flex; flex-direction: column; gap: 1px; }
.pcard-prov { background: #0e0e0e; border-left: 2px solid transparent; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; transition: border-color .3s, background .3s, padding-left .3s; text-decoration: none; cursor: pointer; }
.pcard-prov:hover, .pcard-prov.lit { border-color: #FF5C00; background: #141414; padding-left: 28px; }
.pcard-wa-card:hover, .pcard-wa-card.lit { border-color: #c8a96e !important; }
.pcard-left { display: flex; flex-direction: column; gap: 3px; }
.pcard-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #f5f5f0; letter-spacing: 1px; display: block; line-height: 1; }
.pcard-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #444; display: block; }
.pcard-arrow { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px; color: #c8a96e; opacity: 0; transition: opacity .2s; text-transform: uppercase; flex-shrink: 0; text-decoration: none; }
.pcard-prov:hover .pcard-arrow, .pcard-prov.lit .pcard-arrow { opacity: 1; }
.pcard-wa-btn { opacity: 1 !important; color: #25D366 !important; }
.pcard-wa-name { color: #c8a96e !important; }

/* ANIMACIONES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* RESPONSIVE TABLET */
@media (max-width: 900px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    #hero { padding: 0 20px; padding-top: 72px; height: auto; min-height: 100vh; }
    .hero-bg-text { font-size: 180px; right: -10px; }
    .hero-stats { display: none; }
    .hero-progress { display: none; }
    .hero-sub-geo { font-size: clamp(18px, 4vw, 28px); letter-spacing: 4px; }
    section { padding: 60px 20px; }
    #seo-text { padding: 48px 20px; }
    #nosotras { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .nosotras-image { order: -1; }
    .nosotras-image img { aspect-ratio: 4/3; }
    .nosotras-image::before { display: none; }
    .servicios-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .servicios-header p { text-align: left; max-width: 100%; }
    .servicios-grid { grid-template-columns: 1fr; gap: 2px; }
    .servicio-card { padding: 32px 24px; }
    .num-base, .num-fill { font-size: 100px; }
    .num-fill { clip-path: inset(0% 0 0 0); }
    #galeria { padding: 60px 20px; }
    .galeria-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
    .galeria-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .galeria-item:nth-child(5) { grid-column: span 2; }
    .galeria-item img { min-height: 160px; }
    #porque .inner { grid-template-columns: 1fr; gap: 32px; }
    #cta-band { padding: 80px 20px; }
    #cta-band::before { font-size: 140px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .btn-wa, .btn-primary { justify-content: center; text-align: center; }
    #sumate { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    #sumate .sumate-img { order: -1; }
    #sumate .sumate-img img { aspect-ratio: 16/9; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { flex-direction: column; gap: 24px; }
    footer { padding: 48px 20px 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .wa-float { bottom: 20px; right: 20px; }
    .wa-icon { width: 52px; height: 52px; }
    .wa-label { display: none; }
    #provincias { padding: 64px 24px; }
    #provincias::before { display: none; }
    .prov-map-side { display: none; }
    .prov-wrap { grid-template-columns: 1fr; gap: 0; }
    .prov-header { margin-bottom: 32px; }
    .prov-title { font-size: 48px; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
    .nav-logo img { height: 34px; }
    #hero { padding: 0 16px; padding-top: 68px; }
    .hero-bg-text { font-size: 120px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 20px; }
    .btn-primary { width: 100%; text-align: center; justify-content: center; padding: 14px 24px; }
    .hero-sub-geo { font-size: 20px; letter-spacing: 3px; }
    section { padding: 48px 16px; }
    #seo-text { padding: 36px 16px; }
    .seo-h2 { font-size: 18px; }
    #nosotras { padding: 48px 16px; }
    .nosotras-text h2 { font-size: clamp(36px, 10vw, 52px); }
    .pill { font-size: 10px; padding: 5px 12px; }
    .servicios-header h2 { font-size: clamp(40px, 10vw, 56px); }
    .servicio-card { padding: 28px 20px; }
    .servicio-card h3 { font-size: 22px; }
    .num-base, .num-fill { font-size: 80px; letter-spacing: -2px; }
    .marquee-item { font-size: 16px; padding: 0 28px; gap: 28px; }
    #logos { padding: 40px 16px; }
    .logos-grid { gap: 28px; }
    .logos-grid img { height: 28px; }
    #galeria { padding: 48px 16px; }
    #galeria h2 { font-size: clamp(36px, 10vw, 52px); }
    .galeria-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .galeria-item img { min-height: 130px; }
    #porque { padding: 48px 16px; }
    #porque h2 { font-size: clamp(36px, 10vw, 52px); }
    .reason h4 { font-size: 15px; }
    #cta-band { padding: 60px 16px; }
    #cta-band h2 { font-size: clamp(36px, 10vw, 56px); }
    #sumate { padding: 48px 16px; }
    #sumate h2 { font-size: clamp(36px, 10vw, 52px); }
    footer { padding: 40px 16px 20px; }
    #provincias { padding: 48px 16px; }
    .pcard-prov { padding: 14px 14px; }
    .pcard-name { font-size: 20px; }
    .prov-title { font-size: 40px; }
}