/* ═══════════════════════════════════════
   Roland Gässler Beschichtungs GmbH
   Design Tokens — gemeinsam für Website + LPs
   ═══════════════════════════════════════ */

:root {
  /* Farben */
  --color-ink:         #1A1A1A;
  --color-text:        #333333;
  --color-text-muted:  #71706E;
  --color-primary:     #C1272D;
  --color-primary-dk:  #9E1F24;
  --color-primary-bg:  #F8EDEE;
  --color-bg:          #FFFFFF;
  --color-bg-soft:     #F6F5F3;
  --color-border:      #E2E0DD;

  /* Schriften — 4 Weights total */
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radii */
  --radius: 4px;
  --r-sm: 4px;
  --r-md: 4px;
  --r-lg: 4px;
  --r-xl: 4px;

  /* Schatten */
  --shadow-sm: 0 1px 4px rgba(26,26,26,.06), 0 1px 2px rgba(26,26,26,.04);
  --shadow-md: 0 4px 16px rgba(26,26,26,.08), 0 1px 4px rgba(26,26,26,.05);
  --shadow-lg: 0 16px 48px rgba(26,26,26,.12), 0 4px 12px rgba(26,26,26,.06);

  /* Layout */
  --nav-h:   68px;
  --max-w:   1200px;
}

/* ── Fonts ── */
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/Archivo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/Archivo-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dk); }

/* ── Skip-Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); line-height: 1.3; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ── Layout ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
.section--soft { background: var(--color-bg-soft); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s, color .2s, border-color .2s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active { transform: scale(.97); }

.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dk); color: #fff; }

.btn--secondary { background: transparent; color: var(--color-ink); border: 2px solid var(--color-ink); }
.btn--secondary:hover { background: var(--color-ink); color: #fff; }

.btn--secondary.on-dark { border-color: #fff; color: #fff; }
.btn--secondary.on-dark:hover { background: #fff; color: var(--color-ink); }

.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1EBE5A; color: #fff; }
.btn--insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.btn--insta:hover { opacity: 0.9; color: #fff; }
.btn--insta svg { stroke: #fff; }

.hidden { display: none !important; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-ink);
  text-decoration: none;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__tel {
  font-weight: 600;
  color: var(--color-ink);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 6px;
}
.nav__tel:hover { color: var(--color-primary); }
.nav__tel-icon { flex-shrink: 0; }
.nav__cta { display: none; }

@media (min-width: 480px) {
  .nav__tel { display: inline-flex; }
  .nav__cta { display: inline-flex; padding: 10px 24px; font-size: 14px; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .footer__inner { padding: 0 40px; } }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.footer__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer__brand-mark {
  width: 48px;
  height: auto;
  border-radius: var(--r-sm);
}
.footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,.5);
  transition: color .2s, border-color .2s;
}
.footer__social a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.footer__social svg { width: 18px; height: 18px; }
.footer__contact p { line-height: 1.7; margin-bottom: 8px; }
.footer__contact a { color: rgba(255,255,255,.6); }
.footer__contact a:hover { color: #fff; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 600; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
@media (max-width: 479px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__links a { color: rgba(255,255,255,.35); font-size: 13px; }
.footer__links a:hover { color: rgba(255,255,255,.6); }
.footer__cookie-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
}
.footer__cookie-btn:hover { color: rgba(255,255,255,.6); }
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

/* Sticky CTA entfernt — Floating Buttons übernehmen */

/* ═══════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(26,26,26,.15);
  padding: 24px 20px;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner { max-width: var(--max-w); margin: 0 auto; }
.cookie-banner__text { font-size: 14px; color: var(--color-text); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner__text a { text-decoration: underline; }
.cookie-banner__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner__buttons .btn { padding: 10px 20px; font-size: 14px; }

.cookie-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(26,26,26,.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.show { display: flex; }
.cookie-modal__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__card h3 { margin-bottom: 20px; }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-toggle__label { font-weight: 600; font-size: 15px; }
.cookie-toggle__desc { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.cookie-toggle input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--color-ink); }
.cookie-modal__save { margin-top: 24px; width: 100%; }

/* ═══════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════
   LP-KOMPATIBILITÄT
   Utility-Klassen und Komponenten, die von
   den Landingpages (Balkon, Garage, Komplett)
   benötigt werden.
   ═══════════════════════════════════════ */

/* ── Layout (LP) ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography Utilities (LP) ── */
.h-display { font-size: clamp(44px, 6vw, 80px); font-weight: 800; letter-spacing: -.02em; }
.h-1       { font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; letter-spacing: -.015em; }
.h-2       { font-size: clamp(26px, 3vw, 40px); font-weight: 700; }
.h-3       { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
.h-4       { font-size: 18px; font-weight: 600; }

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.75;
  color: var(--color-text);
}

/* ── Section Variants (LP) ── */
.section--alt { background: var(--color-bg-soft); }
.section--white { background: var(--color-bg); }

/* ── Hero — Ken Burns (LP) ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--color-ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-in-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active { animation: none; }
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.45) 0%, rgba(26,26,26,.65) 50%, rgba(26,26,26,.78) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px 100px;
  color: #fff;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 740px;
  margin-bottom: 24px;
  color: #fff;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  max-width: 560px;
  color: rgba(255,255,255,.82);
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__trust-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}

/* ── USP Strip (LP) ── */
.usp-strip {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.usp-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
.usp-strip__item {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.usp-strip__item:last-child { border-bottom: none; }
.usp-strip__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.usp-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .usp-strip__inner { grid-template-columns: repeat(3, 1fr); }
  .usp-strip__item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.12);
    padding: 36px 32px;
  }
  .usp-strip__item:last-child { border-right: none; }
}

/* ── Leistung Grid (LP) ── */
.leistung__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.leistung__text { max-width: 580px; }
.leistung__text p { margin-top: 16px; color: var(--color-text); }
.leistung__list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.leistung__list li {
  padding-left: 24px;
  position: relative;
  color: var(--color-text);
  line-height: 1.55;
}
.leistung__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
}
.leistung__aside {
  background: var(--color-primary-bg);
  border-left: 3px solid var(--color-primary);
  padding: 36px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.leistung__aside h3 { margin-bottom: 12px; }
.leistung__aside p { color: var(--color-text); font-size: 15px; }
@media (min-width: 768px) {
  .leistung__grid { grid-template-columns: 1.5fr 1fr; gap: 72px; }
}

/* ── Ablauf (LP) ── */
#ablauf { padding: 120px 0; }
.ablauf__intro { max-width: 600px; margin-bottom: 56px; }
.ablauf__intro p { margin-top: 12px; color: var(--color-text); }
.ablauf__list { display: flex; flex-direction: column; gap: 0; }
.ablauf__item {
  display: flex;
  align-items: start;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--color-border);
}
.ablauf__item:first-child { padding-top: 0; }
.ablauf__item:last-child { border-bottom: none; padding-bottom: 0; }
.ablauf__item-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  opacity: .2;
}
.ablauf__item-body { padding-top: 8px; }
.ablauf__item-body h3 { margin-bottom: 8px; font-size: clamp(16px, 2vw, 22px); font-weight: 600; line-height: 1.3; }
.ablauf__item-body p { color: var(--color-text); font-size: 15px; max-width: 480px; }
@media (min-width: 768px) {
  .ablauf__item { gap: 48px; padding: 44px 0; }
  .ablauf__item-num { width: 96px; }
}

/* ── Bewertungen (LP) ── */
#bewertungen { padding: 100px 0; }
.bewertungen__intro { max-width: 600px; margin-bottom: 48px; }
.bewertungen__intro p { margin-top: 12px; color: var(--color-text); }

/* ── Über Uns (LP) ── */
#ueber { padding: 120px 0; }
.ueber__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.ueber__text { max-width: 620px; }
.ueber__text p { margin-top: 16px; }
.ueber__values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.ueber__value { display: flex; gap: 24px; align-items: start; }
.ueber__value-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 72px;
}
.ueber__value-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.ueber__value-body p { font-size: 14px; margin-top: 0; }
@media (min-width: 768px) {
  .ueber__grid { grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start; }
}

/* ── Formular (LP) ── */
.form-section {
  background: var(--color-primary);
  padding: 100px 0;
}
.form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.form-section__text { color: #fff; }
.form-section__text .eyebrow { color: rgba(255,255,255,.7); }
.form-section__text .eyebrow::before { background: rgba(255,255,255,.5); }
.form-section__text h2 { color: #fff; margin-bottom: 16px; }
.form-section__text p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.7; }
.form-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.form__label .required { color: var(--color-primary); }
.form__label .optional { font-weight: 400; color: var(--color-text-muted); font-size: 13px; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  background: var(--color-bg);
  color: var(--color-ink);
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-ink);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
  outline: none;
}
.form__textarea { min-height: 100px; resize: vertical; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371706E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form__check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}
.form__check label { font-size: 13px; color: var(--color-text); line-height: 1.5; }
.form__check a { text-decoration: underline; }
.form__submit { width: 100%; padding: 16px; font-size: 17px; }
@media (min-width: 768px) {
  .form-section__inner { grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
  .form-card { padding: 44px 36px; }
}

/* ── Kontakt Footer (LP) ── */
.kontakt { padding: 72px 0; }
.kontakt__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.kontakt__block h3 { margin-bottom: 8px; }
.kontakt__block p { color: var(--color-text); font-size: 15px; line-height: 1.7; }
.kontakt__block a { font-weight: 600; }
.kontakt__phone { font-size: 22px !important; font-weight: 700; }
.kontakt__phone a { font-size: 22px; font-weight: 700; }
.kontakt__wa { margin-top: 12px !important; }
@media (min-width: 768px) {
  .kontakt__inner { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

/* ── Button Variants (LP) ── */
.btn--phone {
  background: #fff;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
}
.btn--phone:hover { background: var(--color-primary-bg); color: var(--color-primary-dk); }
.btn--white { background: #fff; color: var(--color-primary); }
.btn--white:hover { background: var(--color-primary-bg); }

/* ── Nav extras (LP) ── */
.nav__brand span { color: var(--color-primary); }
.nav__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  transition: background .2s, transform .15s;
}
.nav__wa:hover { background: #1EBE5A; color: #fff !important; transform: scale(1.08); }

/* ── Floating WhatsApp ── */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 997;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
}
.floating-btn:hover { color: #fff; transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.floating-btn--wa { background: #25D366; }
.floating-btn--wa:hover { background: #1EBE5A; }
.floating-btn--insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.floating-btn--insta:hover { opacity: 0.9; }
.floating-btn--insta svg { stroke: #fff; }
@media (max-width: 768px) {
  .floating-buttons { bottom: 16px; right: 16px; }
  .floating-btn { width: 46px; height: 46px; }
}
