/* =========================================================
   FA ENERGÍA — CSS v3.0
   Verde de marca: #78B022
   Diseño: alto contraste + legibilidad + responsive
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;

  color: #111111;
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

  /* ================= BRAND ================= */

  --brand: #78B022;
  --brand-dark: #527D16;
  --brand-darker: #3D5F10;
  --brand-light: #EEF7E4;

  /* ================= TEXT ================= */

  --text: #111111;
  --text-dark: #171717;
  --text-medium: #333333;
  --text-light: #555555;
  --text-muted: #666666;

  --white: #ffffff;

  /* ================= BACKGROUNDS ================= */

  --bg: #ffffff;
  --bg-light: #F7F8F7;
  --bg-green: #EEF7E4;

  --dark: #101510;
  --dark-2: #171C17;
  --dark-3: #202720;

  /* ================= BORDERS ================= */

  --border: #D7DAD7;
  --border-dark: #3B423B;

  /* ================= ACCENTS ================= */

  --accent: #F2B705;
  --accent-dark: #A87500;

  /* ================= STATES ================= */

  --success: #15803D;
  --danger: #B91C1C;
  --info: #075985;

  /* ================= EFFECTS ================= */

  --shadow:
    0 4px 20px rgba(0, 0, 0, 0.08);

  --shadow-hover:
    0 12px 35px rgba(0, 0, 0, 0.14);

  --shadow-green:
    0 8px 25px rgba(120, 176, 34, 0.25);

  --radius: 16px;

  --transition:
    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
}


/* =========================================================
   GENERAL
   ========================================================= */

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: var(--brand-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


/* =========================================================
   SKIP LINK
   ========================================================= */

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;

  transform: translateX(-50%);

  background: #111111;
  color: #ffffff;

  padding: 12px 24px;

  border-radius:
    0 0 var(--radius) var(--radius);

  z-index: 9999;

  text-decoration: none;
  font-weight: 700;

  transition: top 0.25s;
}

.skip-link:focus {
  top: 0;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  padding-left: 24px;
  padding-right: 24px;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #ffffff;

  border-bottom: 1px solid #E4E7E4;

  box-shadow:
    0 2px 15px rgba(0, 0, 0, 0.06);
}

.nav {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* ================= BRAND ================= */

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  text-decoration: none;

  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;

  object-fit: contain;

  border-radius: 8px;
}

.brand-text {
  color: #111111;

  font-size: 1.55rem;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.4px;
}

.brand-text span {
  color: var(--brand-dark);
}


/* ================= NAVIGATION ================= */

.navlinks {
  display: flex;
  align-items: center;

  gap: 26px;
}

.navlinks a {
  position: relative;

  color: #222222;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  transition: var(--transition);
}

.navlinks a:not(.btn)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--brand);

  transition: var(--transition);
}

.navlinks a:not(.btn):hover {
  color: var(--brand-dark);
}

.navlinks a:not(.btn):hover::after {
  width: 100%;
}


/* ================= MOBILE MENU ================= */

.menu {
  display: none;

  border: 0;
  background: transparent;

  color: #111111;

  font-size: 1.6rem;

  cursor: pointer;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 48px;

  padding: 13px 26px;

  border-radius: 999px;

  border: 2px solid transparent;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;

  line-height: 1.2;

  cursor: pointer;

  transition: var(--transition);
}


/* ================= PRIMARY ================= */

.btn-primary {
  background: var(--brand);
  color: #ffffff;

  box-shadow:
    0 4px 12px rgba(120, 176, 34, 0.25);
}

.btn-primary:hover {
  background: var(--brand-dark);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: var(--shadow-green);
}


/* ================= GHOST ================= */

.btn-ghost {
  background: rgba(0, 0, 0, 0.25);

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #ffffff;

  color: #111111;

  border-color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 90vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* ================= HERO OVERLAY ================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  /*
    Fondo oscuro fuerte.
    Evita que la fotografía perjudique
    la lectura del texto.
  */

  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 9, 0.94) 0%,
      rgba(12, 18, 13, 0.88) 55%,
      rgba(12, 18, 13, 0.72) 100%
    );
}


/* ================= HERO GRID ================= */

.hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr;

  gap: 40px;

  padding-top: 80px;
  padding-bottom: 50px;
}

.hero-text {
  max-width: 720px;
}


/* ================= HERO TITLE ================= */

.hero-text h1 {
  color: #ffffff;

  font-size:
    clamp(2rem, 5vw, 3.4rem);

  line-height: 1.12;

  margin-bottom: 24px;

  font-weight: 800;

  letter-spacing: -0.8px;
}

.hero-text h1 strong {
  color: #B5E76F;

  /*
    Verde claro sobre fondo oscuro.
    Mucho más legible que #78B022.
  */
}


/* ================= HERO DESCRIPTION ================= */

.lead {
  color: #ffffff;

  font-size:
    clamp(1rem, 2vw, 1.2rem);

  line-height: 1.7;

  margin-bottom: 32px;

  max-width: 620px;

  opacity: 0.96;
}


/* ================= ACTIONS ================= */

.actions {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 32px;
}


/* ================= RATING ================= */

.hero-rating {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  background: rgba(0, 0, 0, 0.45);

  color: #ffffff;

  padding: 12px 20px;

  border-radius: 999px;

  border:
    1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  font-size: 0.95rem;
}

.stars {
  color: #FFD54A;

  font-size: 1.1rem;

  letter-spacing: 2px;
}


/* =========================================================
   TRUST
   ========================================================= */

.trust {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;

  margin-top: auto;

  padding-top: 30px;
  padding-bottom: 35px;
}

.trust > div {
  background:
    rgba(0, 0, 0, 0.48);

  color: #ffffff;

  padding: 20px;

  border-radius: var(--radius);

  border:
    1px solid rgba(255, 255, 255, 0.2);

  text-align: center;

  backdrop-filter: blur(8px);
}

.trust b {
  display: block;

  color: #ffffff;

  font-size: 0.95rem;

  margin-bottom: 4px;
}

.trust span {
  color: #E7E7E7;

  font-size: 0.85rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

section {
  padding: 100px 0;
}


/* =========================================================
   DARK SECTION
   ========================================================= */

.dark-section {
  background: var(--dark);

  color: #E6E9E6;
}

.dark-section h2,
.dark-section h3 {
  color: #ffffff;
}

.dark-section p {
  color: #E0E3E0;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-head {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 40px;

  margin-bottom: 60px;

  flex-wrap: wrap;
}

.section-head h2 {
  color: #111111;

  font-size:
    clamp(1.8rem, 4vw, 2.6rem);

  line-height: 1.2;

  margin-bottom: 10px;

  font-weight: 800;

  letter-spacing: -0.5px;
}

.dark-section .section-head h2 {
  color: #ffffff;
}

.section-head p {
  color: #444444;

  max-width: 520px;

  font-size: 1.05rem;

  line-height: 1.7;
}

.dark-section .section-head p {
  color: #E0E3E0;
}


/* ================= EYEBROW ================= */

.eyebrow {
  text-transform: uppercase;

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 2px;

  color: var(--brand-dark);

  margin-bottom: 12px;
}

.dark-section .eyebrow {
  color: #B5E76F;
}


/* =========================================================
   GRIDS
   ========================================================= */

.grid3 {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

.grid2 {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
  background: #ffffff;

  color: #111111;

  border-radius: var(--radius);

  padding: 32px;

  border:
    1px solid #D8DDD8;

  box-shadow:
    0 3px 15px rgba(0, 0, 0, 0.05);

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);

  border-color: var(--brand);

  box-shadow: var(--shadow-hover);
}


/* ================= CARD IMAGE ================= */

.card-img {
  padding: 0;

  overflow: hidden;

  background: #ffffff;
}

.card-image {
  position: relative;

  height: 220px;

  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.card-img:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 28px;
}


/* ================= CARD CONTENT ================= */

.card .icon {
  font-size: 2rem;

  margin-bottom: 12px;
}

.card h3 {
  color: #111111;

  font-size: 1.25rem;

  line-height: 1.3;

  margin-bottom: 12px;

  font-weight: 800;
}

.card p {
  color: #444444;

  font-size: 0.95rem;

  line-height: 1.7;

  margin-bottom: 16px;
}


/* ================= CARD LINK ================= */

.more {
  color: var(--brand-dark);

  text-decoration: none;

  font-weight: 700;

  font-size: 0.9rem;

  transition: var(--transition);
}

.more:hover {
  color: #304B0C;

  text-decoration: underline;
}


/* =========================================================
   PROBLEM CARDS / DARK CARDS
   ========================================================= */

.problem {
  background: var(--dark-2);

  border-color:
    var(--border-dark);

  color: #ffffff;
}

.problem h3 {
  color: #ffffff;
}

.problem q {
  display: block;

  color: #FFD54A;

  font-size: 1.25rem;

  font-weight: 800;

  margin-bottom: 16px;

  font-style: italic;
}

.problem p {
  color: #E0E3E0;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  grid-template-rows:
    repeat(2, 280px);

  gap: 16px;
}

.gallery-item {
  position: relative;

  border-radius: var(--radius);

  overflow: hidden;

  cursor: pointer;

  margin: 0;

  background: #111111;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}


/* ================= GALLERY CAPTION ================= */

.gallery-item figcaption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 20px;

  background:
    linear-gradient(
      transparent,
      rgba(0, 0, 0, 0.9)
    );

  color: #ffffff;

  font-weight: 700;

  font-size: 0.95rem;

  transform: translateY(100%);

  transition:
    transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-large {
  grid-column: span 2;

  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 32px;
}

.step {
  text-align: center;

  padding: 32px 24px;

  background: #ffffff;

  color: #111111;

  border-radius: var(--radius);

  border:
    1px solid #D8DDD8;

  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow);
}

.num {
  font-size: 2.5rem;

  font-weight: 800;

  color: var(--brand-dark);

  opacity: 0.8;

  line-height: 1;

  margin-bottom: 16px;
}

.step h3 {
  color: #111111;

  font-size: 1.2rem;

  margin-bottom: 8px;

  font-weight: 800;
}

.step p {
  color: #444444;

  font-size: 0.95rem;
}


/* =========================================================
   COVERAGE
   ========================================================= */

.coverage-card {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 0;

  align-items: stretch;

  padding: 0;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid #D8DDD8;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.coverage-visual iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 320px;

  border: none;
}

.coverage-text {
  padding: 40px;
}

.coverage-text h3 {
  color: #111111;

  font-size: 1.5rem;

  margin-bottom: 16px;

  font-weight: 800;
}

.coverage-text p {
  color: #444444;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
  background: var(--bg-light);
}

.faq details {
  background: #ffffff;

  border-radius: var(--radius);

  margin-bottom: 12px;

  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.05);

  border:
    1px solid #D8DDD8;

  overflow: hidden;

  transition: var(--transition);
}

.faq details:hover {
  border-color: var(--brand);
}

.faq summary {
  padding: 24px 32px;

  font-weight: 700;

  color: #111111;

  cursor: pointer;

  list-style: none;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 1.05rem;
}

.faq summary::after {
  content: "+";

  font-size: 1.5rem;

  color: var(--brand-dark);

  flex-shrink: 0;

  margin-left: 16px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 32px 24px;

  color: #444444;

  line-height: 1.8;

  font-size: 0.95rem;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  padding: 80px 0;
}

.cta-box {
  background:
    linear-gradient(
      135deg,
      #527D16 0%,
      #344E0F 100%
    );

  color: #ffffff;

  padding: 60px;

  border-radius: var(--radius);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  flex-wrap: wrap;
}

.cta-box h2 {
  color: #ffffff;

  font-size: 2rem;

  line-height: 1.2;

  margin-bottom: 12px;

  font-weight: 800;
}

.cta-box p {
  color: #F1F4F0;

  max-width: 500px;
}

.cta-box .btn {
  background: #ffffff;

  color: #304B0C;

  font-size: 1.1rem;

  padding: 16px 40px;

  flex-shrink: 0;
}

.cta-box .btn:hover {
  background: #F2F2F2;

  color: #111111;

  transform: translateY(-2px);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #101510;

  color: #DDE2DD;

  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  gap: 40px;

  align-items: start;
}

.footer-brand {
  color: #ffffff;

  font-size: 1.5rem;

  font-weight: 800;

  margin-bottom: 12px;
}

footer p {
  color: #DDE2DD;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-links a {
  color: #E5E8E5;

  text-decoration: none;

  transition: var(--transition);
}

.footer-links a:hover {
  color: #B5E76F;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 999;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 14px 24px;

  border-radius: 999px;

  background: #25D366;

  color: #ffffff;

  text-decoration: none;

  font-weight: 800;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.2);

  transition: var(--transition);
}

.whatsapp:hover {
  transform:
    translateY(-4px)
    scale(1.03);

  background: #1EBE5D;

  color: #ffffff;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 10000;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;
}

.lightbox-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(0, 0, 0, 0.94);

  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;

  z-index: 1;

  max-width: 90vw;
  max-height: 90vh;

  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;

  object-fit: contain;

  border-radius: 12px;
}

.lightbox-content p {
  color: #ffffff;

  margin-top: 16px;

  font-size: 1.1rem;

  font-weight: 600;
}

.lightbox-close {
  position: absolute;

  top: -50px;
  right: 0;

  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: transparent;

  border: none;

  color: #ffffff;

  font-size: 2.5rem;

  cursor: pointer;
}


/* =========================================================
   HERO SMALL — PÁGINAS INTERNAS
   ========================================================= */

.hero-small {
  min-height: 60vh;
}

.hero-small .hero-grid {
  padding-top: 60px;
  padding-bottom: 30px;
}

.hero-small .hero-text h1 {
  font-size:
    clamp(1.8rem, 4vw, 2.8rem);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 992px) {

  .grid3,
  .steps,
  .trust {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns:
      repeat(2, 1fr);

    grid-template-rows:
      repeat(3, 200px);
  }

  .gallery-large {
    grid-column: span 2;

    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .coverage-card {
    grid-template-columns: 1fr;
  }

  .coverage-visual iframe {
    min-height: 280px;
  }

  .section-head {
    flex-direction: column;

    align-items: flex-start;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ================= HEADER ================= */

  .menu {
    display: block;
  }

  .navlinks {
    position: absolute;

    top: 72px;

    left: 0;
    right: 0;

    background: #ffffff;

    flex-direction: column;

    align-items: stretch;

    padding: 24px;

    gap: 16px;

    border-top:
      1px solid #E4E7E4;

    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.1);

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
      max-height 0.3s ease,
      opacity 0.3s ease;

    pointer-events: none;
  }

  .navlinks.active {
    max-height: 450px;

    opacity: 1;

    pointer-events: auto;
  }

  .navlinks a {
    padding: 8px 0;

    font-size: 1rem;
  }


  /* ================= HERO ================= */

  .hero {
    min-height: auto;

    padding-bottom: 20px;
  }

  .hero-grid {
    padding-top: 65px;

    padding-bottom: 30px;
  }

  .hero-text h1 {
    font-size:
      clamp(2rem, 9vw, 2.7rem);

    letter-spacing: -0.5px;
  }

  .lead {
    font-size: 1rem;

    line-height: 1.7;
  }


  /* ================= BUTTONS ================= */

  .actions {
    flex-direction: column;

    width: 100%;
  }

  .btn {
    width: 100%;

    min-height: 50px;
  }


  /* ================= TRUST ================= */

  .trust {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 12px;
  }

  .trust > div {
    padding: 16px 10px;
  }


  /* ================= GRIDS ================= */

  .grid3,
  .grid2,
  .steps {
    grid-template-columns: 1fr;
  }


  /* ================= GALLERY ================= */

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-template-rows: auto;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;

    grid-row: span 1;

    height: 250px;
  }

  .gallery-item {
    height: 250px;
  }

  /*
    En móvil la descripción no depende del hover.
  */

  .gallery-item figcaption {
    transform: translateY(0);

    padding: 14px;
  }


  /* ================= CTA ================= */

  .cta-box {
    flex-direction: column;

    text-align: center;

    padding: 40px 24px;
  }


  /* ================= FOOTER ================= */

  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-links {
    align-items: center;
  }


  /* ================= BRAND ================= */

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 1.3rem;
  }


  /* ================= WHATSAPP ================= */

  .whatsapp {
    right: 16px;
    bottom: 16px;

    padding: 13px 18px;
  }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding: 65px 0;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .card,
  .step {
    padding: 24px;
  }

  .card-body {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .faq summary {
    padding: 20px 24px;

    font-size: 0.95rem;
  }

  .faq details p {
    padding:
      0 24px 20px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .whatsapp {
    right: 12px;
    bottom: 12px;

    padding: 12px 16px;

    font-size: 0.9rem;
  }
}


/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
