/* ============================================
   CALDERAS PARA MADRID - Stylesheet
   Paleta: #0d1b2a (navy), #e8371a (rojo), #ffffff
   ============================================ */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e44;
  --navy-light: #2a4a6b;
  --red: #e8371a;
  --red-dark: #c02010;
  --red-light: #ff5533;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-content p { font-size: .88rem; flex: 1; min-width: 250px; color: #cbd5e1; }
.cookie-content a { color: var(--red-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--red);
  color: white;
  padding: .55rem 1.25rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--red-dark); }
.btn-cookie-reject {
  border: 1px solid rgba(255,255,255,.3);
  color: #94a3b8;
  padding: .55rem 1.25rem;
  border-radius: 6px;
  font-size: .88rem;
  transition: all .2s;
}
.btn-cookie-reject:hover { border-color: white; color: white; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: #94a3b8;
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.topbar-item { display: flex; align-items: center; gap: .4rem; }
.topbar-phone {
  background: var(--red);
  color: white;
  padding: .3rem .9rem;
  border-radius: 4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s;
}
.topbar-phone:hover { background: var(--red-dark); }

/* ---- HEADER ---- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--red);
}
.navbar { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); letter-spacing: .05em; line-height: 1; }
.logo-sub { font-size: .7rem; color: var(--red); font-weight: 600; letter-spacing: .12em; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .85rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { background: var(--gray-100); color: var(--red); }
.nav-cta {
  background: var(--red);
  color: white;
  padding: .55rem 1.1rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  margin-left: .5rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--red);
  color: white;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(232,55,26,.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,55,26,.45); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: white;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(232,55,26,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(42,74,107,.4) 0%, transparent 50%);
}
.hero .container { display: flex; align-items: center; gap: 3rem; position: relative; z-index: 1; }
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,55,26,.2);
  border: 1px solid rgba(232,55,26,.4);
  color: #ffa090;
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}
.hero-title .highlight { color: var(--red); }
.hero-subtitle { color: #94a3b8; font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; }
.hero-subtitle strong { color: #cbd5e1; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--red); line-height: 1; }
.stat-label { font-size: .78rem; color: #64748b; letter-spacing: .04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

.hero-image-wrapper { width: 340px; flex-shrink: 0; }
.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.hero-card-inner { display: flex; justify-content: center; }
.boiler-svg { width: 160px; height: auto; filter: drop-shadow(0 8px 24px rgba(232,55,26,.2)); }
.hero-card-label { margin-top: 1rem; font-size: .82rem; color: #22c55e; font-weight: 600; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 1.5rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .9rem; color: var(--navy); }
.trust-item span { font-size: .8rem; color: var(--gray-600); }

/* ---- SECTION COMMON ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(232,55,26,.1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: .75rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; }

/* ---- SERVICES ---- */
.services { padding: 5rem 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { background: var(--red); }
.service-card.featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), var(--shadow-md); }
.service-card.featured::before { background: var(--red); }
.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--red); color: white;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  padding: .2rem .6rem; border-radius: 30px;
}
.service-icon-wrap { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: .75rem; font-weight: 600; }
.service-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.service-list { margin-bottom: 1.5rem; }
.service-list li { font-size: .85rem; color: var(--gray-600); padding: .25rem 0 .25rem 1.25rem; position: relative; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.service-link { color: var(--red); font-weight: 600; font-size: .9rem; transition: gap .2s; }
.service-link:hover { text-decoration: underline; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--navy); padding: 4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem); color: white; line-height: 1.25; margin-bottom: .5rem; }
.cta-text p { color: #94a3b8; font-size: .95rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- BRANDS ---- */
.brands { padding: 4.5rem 0; background: var(--gray-50); }
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.brand-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.brand-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.brand-logo {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  color: var(--navy);
  line-height: 1.2;
}
.brand-vaillant { color: #006b38; }
.brand-junkers { color: #005a9e; }
.brand-baxi { color: #c8102e; }
.brand-saunier { color: #0070b8; }
.brand-ferroli { color: #e8371a; }
.brand-ariston { color: #c8102e; }
.brand-roca { color: #004b87; }
.brand-cointra { color: #0d1b2a; }
.brand-viessmann { color: #005b9f; }
.brand-immergas { color: #003087; }

/* ---- ABOUT ---- */
.about { padding: 5rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; }
.about-illustration { width: 100%; }
.about-badge-floating {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--red);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: .65rem; line-height: 1.3; opacity: .9; }
.about-content .section-tag { display: inline-block; margin-bottom: .75rem; }
.about-content h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.about-content > p { color: var(--gray-600); margin-bottom: 1rem; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.check-icon { background: var(--red); color: white; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; flex-shrink: 0; margin-top: .15rem; }
.about-feature strong { display: block; color: var(--navy); font-size: .95rem; }
.about-feature p { color: var(--gray-600); font-size: .88rem; margin: .1rem 0 0; }

/* ---- FAQ ---- */
.faq { padding: 5rem 0; background: var(--gray-50); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question[aria-expanded="true"] { background: var(--gray-50); color: var(--red); }
.faq-arrow { color: var(--red); font-size: .85rem; transition: transform .3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--gray-600); font-size: .95rem; }
.faq-answer a { color: var(--red); text-decoration: underline; }

/* ---- CONTACT ---- */
.contact { padding: 5rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info .section-tag { margin-bottom: .75rem; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: .75rem; }
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all .25s;
}
a.contact-item:hover { border-color: var(--red); background: rgba(232,55,26,.04); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .1rem; }
.contact-item span { font-size: .9rem; color: var(--gray-600); }

.contact-form-wrapper {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,55,26,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.25rem; }
.form-check input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--red); }
.form-check label { font-size: .85rem; color: var(--gray-600); }
.form-check a { color: var(--red); text-decoration: underline; }
.form-note { font-size: .78rem; color: var(--gray-400); margin-top: .75rem; text-align: center; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: #94a3b8; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.logo-footer .logo-main { color: white; }
.footer-brand p { margin: 1rem 0 1.5rem; font-size: .88rem; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { color: #94a3b8; font-size: .9rem; transition: color .2s; }
.footer-contact a:hover { color: var(--red-light); }
.footer-col h4 { font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li, .footer-col a { font-size: .87rem; color: #94a3b8; transition: color .2s; }
.footer-col a:hover { color: var(--red-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: #64748b;
}
.footer-bottom a { color: #64748b; transition: color .2s; }
.footer-bottom a:hover { color: #94a3b8; }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 800;
  transition: transform .25s, box-shadow .25s;
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); animation: none; }
.phone-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,55,26,.4);
  z-index: 800;
  transition: transform .25s, box-shadow .25s;
  animation: pulse-red 2.5s infinite 1.25s;
}
.phone-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(232,55,26,.5); animation: none; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,55,26,.4); }
  50% { box-shadow: 0 4px 30px rgba(232,55,26,.7), 0 0 0 8px rgba(232,55,26,.15); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,.15);
    transition: right .3s ease;
    z-index: 850;
    gap: .25rem;
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: .75rem 1rem; border-radius: 8px; }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; margin-top: .5rem; justify-content: center; }

  .hero { padding: 3.5rem 0; }
  .hero .container { flex-direction: column; }
  .hero-image-wrapper { display: none; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-floating { right: 0; bottom: -1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }

  .whatsapp-float, .phone-float { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .trust-grid { grid-template-columns: 1fr; }
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }
}
