/* =====================================================
   ELECTRIZER.ES — GLOBAL STYLESHEET
   ===================================================== */

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

:root {
  --yellow:      #FFB300;
  --yellow-dk:   #E0A000;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #252525;
  --gray-light:  #f4f4f4;
  --white:       #ffffff;
  --text:        #444444;
  --text-light:  #777777;
  --border:      #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── UTILITY ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; line-height: 1.1;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; transition: all .25s;
}
.btn-yellow  { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-dk); }
.btn-dark    { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark3); }
.btn-outline { border: 2px solid var(--yellow); color: var(--yellow); background: transparent; }
.btn-outline:hover { background: var(--yellow); color: var(--dark); }
.btn-white   { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-white:hover { background: #fff; color: var(--dark); }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,.97);
  height: 70px; display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 50px; transition: box-shadow .3s;
}
nav.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }

.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-bolt { font-size: 22px; line-height: 1; }
.nav-brand {
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 17px; letter-spacing: 4px;
}
.nav-brand span { color: var(--yellow); }

.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; }
.nav-links a {
  color: #bbb; text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links .btn-nav {
  background: var(--yellow); color: var(--dark) !important;
  padding: 10px 20px; font-weight: 700;
}
.nav-links .btn-nav:hover { background: var(--yellow-dk); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px;
}
.nav-hamburger span { width: 26px; height: 2px; background: white; transition: all .3s; }

/* ── HERO (HOME) ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.3);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white); padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(32px, 6vw, 82px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 6px; line-height: 1.05;
}
.hero-content h1 em { color: var(--yellow); font-style: normal; }
.hero-sub {
  margin: 18px 0 36px; color: #bbb;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(10,10,10,.9);
  padding: 22px 60px; display: flex;
  align-items: center; justify-content: center; gap: 50px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 30px; font-weight: 900; color: var(--yellow); line-height: 1;
}
.hero-stat span { font-size: 10px; color: #777; text-transform: uppercase; letter-spacing: 2px; }
.hero-stat-sep { width: 1px; height: 48px; background: #2a2a2a; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; padding-top: 70px;
  height: 310px; display: flex; align-items: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,.72);
}
.page-hero-content {
  position: relative; z-index: 2; color: white;
  padding: 0 40px; max-width: 1200px; width: 100%; margin: 0 auto;
}
.breadcrumb { font-size: 12px; color: #aaa; margin-bottom: 12px; letter-spacing: 1px; }
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-content h1 {
  font-size: clamp(24px, 4vw, 50px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px;
}
.page-hero-content p { color: #ccc; font-size: 14px; max-width: 540px; margin-bottom: 20px; }
.btn-call-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  padding: 13px 28px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: background .25s;
}
.btn-call-hero:hover { background: var(--yellow-dk); }

/* ── SECTIONS ── */
.section     { padding: 90px 0; }
.section-sm  { padding: 60px 0; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark2 { background: var(--dark2); color: var(--white); }
.section-gray  { background: var(--gray-light); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: var(--white); padding: 42px 36px;
  transition: all .3s; border-bottom: 3px solid transparent; cursor: pointer;
}
.service-card:hover {
  border-bottom-color: var(--yellow);
  transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.service-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.service-card h3 {
  font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--dark); margin-bottom: 10px;
}
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.service-card a.more {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow); text-decoration: none;
}
.service-card a.more:hover { text-decoration: underline; }

/* ── URGENCIAS DARK ── */
.urgencias-section { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.urgencias-text { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.urgencias-text .section-title { color: var(--white); margin-bottom: 20px; }
.urgencias-text p { color: #999; font-size: 14px; line-height: 1.85; max-width: 420px; margin-bottom: 28px; }
.urgencias-list { list-style: none; margin-bottom: 35px; }
.urgencias-list li {
  color: #ccc; font-size: 14px;
  padding: 10px 0; border-bottom: 1px solid #1e1e1e;
  display: flex; align-items: center; gap: 12px;
}
.urgencias-list li::before { content: '⚡'; color: var(--yellow); font-size: 13px; flex-shrink: 0; }
.urgencias-image { position: relative; overflow: hidden; }
.urgencias-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── FEATURES (why us) ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { text-align: center; padding: 35px 20px; }
.feature-icon { font-size: 44px; margin-bottom: 15px; display: block; }
.feature-item h3 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.feature-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ── ZONAS GRID ── */
.zonas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.zona-card { position: relative; overflow: hidden; cursor: pointer; }
.zona-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; }
.zona-card:hover img { transform: scale(1.08); }
.zona-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.zona-overlay h3 { color: white; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.zona-overlay a { color: var(--yellow); font-size: 11px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card { background: rgba(255,255,255,.05); padding: 32px; border-left: 3px solid var(--yellow); }
.t-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 15px; }
.t-text { font-size: 14px; line-height: 1.85; color: #ccc; font-style: italic; margin-bottom: 20px; }
.t-author { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); }
.t-author span { color: var(--yellow); font-weight: 400; display: block; margin-top: 3px; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--yellow); padding: 55px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-strip h2 { font-size: clamp(18px, 2.5vw, 32px); text-transform: uppercase; letter-spacing: 2px; color: var(--dark); }
.cta-strip p { color: rgba(0,0,0,.55); font-size: 14px; margin-top: 6px; }
.cta-strip-btns { display: flex; gap: 14px; flex-shrink: 0; }

/* ── PAGE CONTENT LAYOUT ── */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.page-content h2 {
  font-size: clamp(17px, 2.2vw, 26px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark);
  margin: 38px 0 14px; padding-top: 14px; border-top: 2px solid var(--yellow);
}
.page-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.page-content p { color: var(--text-light); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 16px 20px; color: var(--text-light); font-size: 15px; line-height: 1.85; }
.page-content li { margin-bottom: 7px; }
.page-content img { width: 100%; margin: 25px 0; }
.page-content .cta-box {
  background: var(--yellow); padding: 30px 35px; margin: 30px 0; display: flex;
  align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.page-content .cta-box p { color: var(--dark); font-weight: 600; margin: 0; font-size: 15px; }

/* ── SIDEBAR ── */
.sidebar-widget { background: var(--gray-light); padding: 28px; margin-bottom: 22px; }
.sidebar-widget h3 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--dark); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--yellow);
}
.sidebar-services { list-style: none; }
.sidebar-services li { margin-bottom: 9px; }
.sidebar-services a {
  color: var(--text-light); text-decoration: none;
  font-size: 13px; transition: color .25s;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-services a::before { content: '⚡'; color: var(--yellow); font-size: 11px; }
.sidebar-services a:hover { color: var(--yellow); }

.sidebar-cta { background: var(--dark); padding: 35px 28px; color: var(--white); margin-bottom: 22px; text-align: center; }
.sidebar-cta h3 { font-size: 17px; font-weight: 900; color: var(--yellow); margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: #aaa; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta .phone-big {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--white);
  text-decoration: none; margin-bottom: 14px; line-height: 1.2;
}
.sidebar-cta .phone-big:hover { color: var(--yellow); }
.sidebar-badge { margin-top: 18px; border: 1px solid #2a2a2a; padding: 14px; font-size: 12px; color: #777; }
.sidebar-badge strong { color: var(--yellow); display: block; margin-bottom: 4px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.faq-item { background: var(--white); border-left: 3px solid var(--yellow); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--dark); transition: color .25s;
}
.faq-question:hover { color: var(--yellow); }
.faq-arrow { font-size: 18px; transition: transform .3s; color: var(--yellow); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 13px; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-item { text-align: center; padding: 45px 25px; position: relative; }
.step-item:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 48px;
  color: var(--yellow); font-size: 24px; font-weight: 900;
}
.step-num {
  width: 58px; height: 58px; border: 2px solid var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900;
  color: var(--yellow); margin: 0 auto 18px;
}
.step-item h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.step-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--dark); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); font-size: 14px; line-height: 1.85; margin-bottom: 28px; }
.cdi { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.cdi-icon { width: 44px; height: 44px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cdi-text strong { font-family: 'Montserrat', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; display: block; color: var(--dark); margin-bottom: 4px; }
.cdi-text span, .cdi-text a { font-size: 14px; color: var(--text-light); text-decoration: none; }
.cdi-text a:hover { color: var(--yellow); }

.form-group { margin-bottom: 15px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border: 1px solid var(--border);
  padding: 14px 16px; font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: #fafafa; outline: none; transition: border-color .25s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); background: var(--white); }
.form-group textarea { height: 140px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ── FOOTER ── */
footer.site-footer { background: var(--dark); color: #888; }
.footer-main {
  padding: 70px 0 50px; border-bottom: 1px solid #1e1e1e;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px;
}
.footer-about .nav-logo { margin-bottom: 20px; }
.footer-about p { font-size: 13px; line-height: 1.85; color: #666; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #555; text-decoration: none; font-size: 13px; transition: all .25s;
}
.footer-social:hover { border-color: var(--yellow); color: var(--yellow); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--white);
  margin-bottom: 22px; padding-bottom: 12px; position: relative;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--yellow); }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: #666; text-decoration: none; font-size: 13px; transition: color .25s; }
.footer-list a::before { content: '› '; color: var(--yellow); }
.footer-list a:hover { color: var(--yellow); }
.fci { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; color: #666; line-height: 1.6; }
.fci-icon { color: var(--yellow); flex-shrink: 0; }
.fci a { color: #666; text-decoration: none; }
.fci a:hover { color: var(--yellow); }

.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #444; }
.footer-bottom a { color: var(--yellow); text-decoration: none; }

/* ── BANNER SECTION ── */
.banner-section { position: relative; height: 380px; display: flex; align-items: center; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.28); }
.banner-content { position: relative; z-index: 2; text-align: center; color: var(--white); width: 100%; padding: 0 20px; }
.banner-content h2 { font-size: clamp(22px, 4vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 20px; }
.banner-content h2 em { color: var(--yellow); font-style: normal; }
.banner-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATE IN ── */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav.site-nav { padding: 0 30px; }
  .container { padding: 0 25px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .zonas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .urgencias-section { grid-template-columns: 1fr; }
  .urgencias-image { min-height: 300px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .hero-bottom-bar { flex-wrap: wrap; gap: 20px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-item:not(:last-child)::after { display: none; }
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; inset: 70px 0 0 0;
    background: rgba(10,10,10,.98); padding: 30px; gap: 20px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero { height: 260px; }
  .page-hero-content { padding: 0 20px; }
  .urgencias-text { padding: 50px 30px; }
  .hero-bottom-bar { padding: 18px 25px; }
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
}
