/* ═══════════════════════════════════════════════════════
   PROBOLSAS LTDA — style.css
   Preset C: Brutalist Signal (Paper / Signal Red / Black)
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:     #E8E4DD;
  --off-white: #F5F3EE;
  --brand:       #136CFC;
  --black:     #111111;
  --mid:       #444444;
  --faint:     #D4D0C9;

  --font-head: 'Space Grotesk', sans-serif;
  --font-drama:'DM Serif Display', serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;

  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-head);
  background-color: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── PRELOADER ────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-counter {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--brand);
}

/* ── NOISE OVERLAY ────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── UTILITY ──────────────────────────────────────────── */
.mono { font-family: var(--font-mono); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION LABEL ────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.label-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}
.label-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── CTA BUTTON ───────────────────────────────────────── */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.22s var(--transition), box-shadow 0.22s var(--transition);
}
.cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(19, 108, 252, 0.3);
}
.cta-hover-bg {
  position: absolute;
  inset: 0;
  background: #0d55cd;
  transform: translateX(-105%);
  transition: transform 0.35s var(--transition);
  border-radius: inherit;
  z-index: 0;
}
.cta-btn:hover .cta-hover-bg { transform: translateX(0); }
.cta-btn > span:first-child { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}
#navbar.scrolled {
  background: rgba(245, 243, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--faint);
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}


.nav-links { display: flex; gap: 0.25rem; }
.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xl);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-1px); }
#navbar.scrolled .nav-link { color: var(--black); }
#navbar.scrolled .nav-link:hover { color: var(--brand); background: rgba(19,108,252,0.07); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Language buttons */
.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.65;
}
.lang-btn:hover { opacity: 1; transform: scale(1.1); }
.lang-btn.active { opacity: 1; background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
#navbar.scrolled .lang-btn { background: rgba(0,0,0,0.05); border-color: var(--faint); }
#navbar.scrolled .lang-btn.active { background: rgba(19,108,252,0.1); border-color: var(--brand); }
.flag-emoji { display: block; line-height: 1; }

.nav-cta { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
#navbar.scrolled .hamburger span { background: var(--black); }

@media (max-width: 768px) {
  .nav-inner { padding: 0 1.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(245,243,238,0.98); backdrop-filter: blur(16px); padding: 2rem 1.5rem; flex-direction: column; gap: 0.5rem; border-bottom: 1px solid var(--faint); }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { color: var(--black); padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 1.1rem; }
  .nav-links .nav-link:hover { background: rgba(19,108,252,0.07); color: var(--brand); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  #navbar { padding: 1rem 0; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.95) 0%,
    rgba(17,17,17,0.65) 40%,
    rgba(17,17,17,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 12rem 3rem 8rem 3rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.95rem; /* significantly larger */
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(19, 108, 252, 0.4); /* subtle blue border */
  box-shadow: 0 0 15px rgba(19, 108, 252, 0.3); /* slight blue glowing border */
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
}
.hero-drama {
  font-family: var(--font-drama);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--brand);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-cta { opacity: 0; }

@media (max-width: 768px) {
  .hero-content { padding: 2.5rem 1.5rem 6.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
  background: var(--off-white);
  padding: 7rem 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feat-card {
  background: var(--paper);
  border: 1.5px solid var(--faint);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.28s var(--transition), box-shadow 0.28s var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.feat-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.feat-card--accent {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.feat-card--accent .feat-desc { color: rgba(255,255,255,0.8); }
.feat-card--accent .feat-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.feat-icon { width: 2.5rem; height: 2.5rem; color: var(--brand); }
.feat-card--accent .feat-icon { color: rgba(255,255,255,0.9); }
.feat-icon svg { width: 100%; height: 100%; }

.feat-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.feat-card--accent .feat-title { color: #fff; }
.feat-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.65; flex: 1; }
.feat-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(19,108,252,0.08);
  color: var(--brand);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
  align-self: flex-start;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
.products-section {
  background-color: var(--off-white);
  background-image: 
    linear-gradient(rgba(245, 243, 238, 0.4), rgba(245, 243, 238, 0.7)),
    url('images/rollos-fondo.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem 7rem;
  position: relative;
}
.products-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 3rem;
}
.products-h2 em {
  font-family: var(--font-drama);
  font-style: italic;
  color: var(--brand);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Modern List */
.products-list-col {
  display: flex;
  flex-direction: column;
}
.modern-product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--paper);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--faint);
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition), border-color 0.25s;
  opacity: 0;
  transform: translateX(-30px);
}
.product-item:hover {
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  border-color: var(--brand);
}
.product-icon {
  color: var(--brand);
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: flex;
}
.product-icon svg {
  width: 100%;
  height: 100%;
}
.product-item:hover .product-icon {
  color: var(--black);
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* Smaller Photos Gallery */
.products-photos-col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.prod-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--faint);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  flex: 1;
}
.prod-img-wrap.prod-img-1 {
  aspect-ratio: 4/5;
  margin-top: -3rem; 
}
.prod-img-wrap.prod-img-2 {
  aspect-ratio: 4/5;
  margin-top: 3rem;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.prod-img-wrap:hover .prod-img {
  transform: scale(1.05);
}
.prod-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245,243,238,0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.05);
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .products-grid { grid-template-columns: 1fr; gap: 4rem; }
  .prod-img-wrap { flex: none; width: 45%; max-width: 320px; }
  .prod-img-wrap.prod-img-1 { margin-top: 0; }
  .prod-img-wrap.prod-img-2 { margin-top: 3rem; margin-left: 0; }
}
@media (max-width: 500px) {
  .products-photos-col { flex-direction: column; width: 100%; gap: 2rem; margin-top: 1rem; }
  .prod-img-wrap { flex: none; width: 90%; max-width: none; }
  .prod-img-wrap.prod-img-2 { margin-top: 0; margin-left: 0; aspect-ratio: 4/3; }
  .prod-img-wrap.prod-img-1 { aspect-ratio: 4/3; }
  
  .product-item { padding: 1rem 1.25rem; gap: 0.75rem; }
  .product-name { font-size: 0.85rem; }
  .product-icon { width: 1.25rem; height: 1.25rem; }
}

/* ═══════════════════════════════════════════
   STATS / ABOUT
═══════════════════════════════════════════ */
.stats-section {
  background-color: var(--black);
  background-image: 
    radial-gradient(ellipse at center, rgba(19,108,252,0.15) 0%, transparent 70%),
    linear-gradient(rgba(17,17,17,0.4), rgba(17,17,17,0.65)),
    url('images/Pellets-naturales.png');
  background-size: auto, cover, cover;
  background-position: center, center, center;
  background-attachment: scroll, scroll, fixed;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .stats-section {
    background-attachment: scroll, scroll, scroll;
  }
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stats-section .section-label .label-text { color: rgba(255,255,255,0.4); }
.stats-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.stats-h2 em { font-family: var(--font-drama); font-style: italic; color: var(--brand); }
.stats-body { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.25rem; }
.stats-address { color: rgba(255,255,255,0.3); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; margin-bottom: 2rem; }

/* Team Section within About */
.team-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}
.team-member {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.team-photo-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  flex-shrink: 0;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: filter 0.3s ease;
}
.team-member:hover .team-photo { filter: grayscale(0) contrast(1); }
.team-info { display: flex; flex-direction: column; gap: 0.2rem; }
.team-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.stats-numbers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  opacity: 0;
  transform: translateX(30px);
}
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--brand);
  font-weight: 700;
}
.stat-label {
  width: 100%;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-top: 0.2rem;
}
.stat-divider { height: 1px; background: rgba(255,255,255,0.08); }

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════
   MATERIALS BAND
═══════════════════════════════════════════ */
.materials-band {
  background: var(--paper);
  border-top: 1.5px solid var(--faint);
  border-bottom: 1.5px solid var(--faint);
  padding: 1.5rem 2rem;
  overflow: hidden;
}
.materials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.mat-items { display: flex; align-items: center; gap: 1.25rem; }
.mat-item {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.06em;
}
.mat-dot { color: var(--brand); font-size: 1.2rem; line-height: 1; }
.mat-clients {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .materials-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ═══════════════════════════════════════════
   CTA / CLOSER
═══════════════════════════════════════════ */
.closer {
  background: var(--brand);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.closer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.closer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.closer-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.closer-sub { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; }
/* Closer Form Styles */
.closer-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255,255,255,0.08);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.closer-cta {
  background: #fff;
  color: var(--brand);
  border: none;
  cursor: pointer;
}
.closer-cta .cta-hover-bg { background: rgba(255,255,255,1); }
.closer-cta:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(-2px); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* WhatsApp Pill */
.whatsapp-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}
.whatsapp-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.wa-pill-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 900px) {
  .closer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .whatsapp-pill { justify-content: center; }
}

.closer-alt { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.inline-link { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: #fff; }

@media (max-width: 768px) {
  .closer-inner { grid-template-columns: 1fr; }
  .closer-actions { align-items: stretch; }
  .closer-cta { text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #0A0A0A;
  padding: 4rem 2rem 1.5rem;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.25rem;
}
.footer-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s, transform 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.9); transform: translateX(2px); }

/* Cali Badge in Footer */
.footer-badge {
  display: flex;
  align-items: center;
}
.cali-badge {
  height: 160px; /* significantly larger as requested */
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.cali-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.footer-copy { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.18); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { padding-top: 1.5rem; }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 500px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
}
