/* ========================================================================
   ARRAPSATEL GEOMETRIC_STRUCTURED STYLE.CSS
   ------------------------------------------------------------------------
   Modern, geometric & structured design with Arrapsatel brand colors, flexbox ONLY
   Fonts used: Roboto Slab (display), Montserrat (body)
   ======================================================================== */

/* ========================== CSS RESET & NORMALIZE ======================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html{ box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7F9FC;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
ul, ol {
  list-style: none;
}
input[type="email"] {
  border: 2px solid #B0BEC5;
  border-radius: 8px;
  padding: 12px;
  margin-right: 12px;
  font-size: 16px;
}

/* ========================== BRAND COLORS & FONTS ======================= */
:root {
  --primary: #1A237E;
  --secondary: #00B8D4;
  --accent: #FFD600;
  --primary-light: #4951ac;
  --secondary-light: #4ed9e7;
  --bg: #F7F9FC;
  --surface: #FFF;
  --grey300: #E3E8EF;
  --grey600: #607D8B;
  --grey900: #222;
  --card-radius: 18px;
  --card-shadow: 0 4px 24px 0 rgba(26,35,126,0.11);
  --card-border: 2px solid #E3E8EF;
  --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
  --breadcrumb: #90A4AE;
  --testimonial-bg: #fafafe;
  --testimonial-border: 2px solid #C5CAE9;
  --testimonial-text: #1A237E;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.17rem; }

p, li, span, input, label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--grey900);
}
strong { font-weight: 700; color: var(--primary); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.13rem; }
}

/* ========================== STRUCTURAL LAYOUTS ========================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(0,184,212,0.14);
  border-color: var(--secondary);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}


/* ========================== HEADER & NAVIGATION ======================== */
header {
  background: var(--surface);
  box-shadow: 0 2px 8px 0 rgba(26,35,126,0.05);
  border-bottom: 2px solid var(--grey300);
  position: sticky;
  top: 0;
  z-index: 30;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
  aspect-ratio: 124/44;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--primary-light);
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 10px 8px 8px 8px;
  border-radius: 8px;
  transition: background .19s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary-light);
  color: #fff;
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 0 24px 0 24px;
  font-size: 1.11rem;
  box-shadow: 0 2px 11px 0 rgba(255,214,0,0.19);
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  margin-left: 18px;
  display: inline-block;
  border-bottom: 3.5px solid var(--secondary);
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,184,212,0.12);
  border-bottom: 3.5px solid var(--primary);
}

@media (max-width: 1024px) {
  header > .container { gap: 14px; }
  .main-nav { gap: 18px; }
  .cta-button { margin-left: 10px; font-size: 1rem; }
}
@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none;
  }
}

/* ------------ MOBILE MENU ------------ */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 7px 12px;
  border: none;
  cursor: pointer;
  transition: background .19s;
  z-index: 60;
  margin-left: auto;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0;
  transform: translateX(-110vw);
  transition: transform var(--transition);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 10px 0;
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  cursor: pointer;
  padding: 2px 16px;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.13rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 2.5px solid transparent;
  padding-bottom: 2px;
  letter-spacing: .03em;
  transition: border-bottom .19s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}

@media (max-width: 400px) {
  .mobile-nav { margin-left: 18px; }
}

/* ============ SECTION: HERO, FEATURES, etc. ============ */
section {
  background: none;
  border: none;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 0;
}
section > .container > h2 {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  section { padding: 28px 9px; margin-bottom: 34px; }
}

/* ------------ GEOMETRIC FEATURE GRID ------------ */
.feature-grid, .service-list, .team-list, .values-list, .benefits-list, .exploration-methods-grid, .topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li, .values-list li, .benefits-list li, .exploration-methods-grid li, .topic-grid li {
  background: var(--surface);
  border-radius: 0 28px 0 28px;
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  flex: 1 1 204px;
  min-width: 220px;
  max-width: 288px;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature-grid li:hover, .values-list li:hover, .benefits-list li:hover, .exploration-methods-grid li:hover, .topic-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(0,184,212,0.13);
  border-color: var(--secondary);
}
.feature-grid img, .values-list img, .benefits-list img, .exploration-methods-grid img {
  width: 38px; height: 38px; margin-bottom: 5px;
  filter: drop-shadow(0 1px 3px rgba(26,35,126,.11));
}


/* ------ SERVICE CARDS (services.html) ------ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}
.service-cards li {
  background: var(--surface);
  border-radius: 0 24px 0 24px;
  box-shadow: var(--card-shadow);
  border: 2px solid #E3E8EF;
  flex: 1 1 310px;
  min-width: 270px;
  max-width: 340px;
  padding: 26px 20px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-cards li:hover {
  box-shadow: 0 8.5px 32px 0 rgba(0,184,212,.13);
  border-color: var(--secondary);
}
.service-cards .price {
  align-self: flex-end;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .benefits-list, .topic-grid, .exploration-methods-grid {
    gap: 14px;
  }
  .feature-grid li, .values-list li, .service-cards li, .benefits-list li, .exploration-methods-grid li, .topic-grid li {
    min-width: 90vw;
    max-width: 98vw;
    flex: 1 1 99vw;
    padding: 22px 10px;
  }
}
/* ------ TEAM/VALUE/INFO LISTS ------ */
.team-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.team-list li, .faq-list li {
  background: var(--surface);
  border-radius: 0 16px 0 16px;
  border-left: 4px solid var(--primary-light);
  box-shadow: 0 2px 7px 0 rgba(26,35,126,0.08);
  padding: 20px 20px 18px 22px;
}

/* ------ ARTICLE CARDS (articulos.html) ------ */
.article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}
.article-cards li {
  background: var(--surface);
  border-radius: 0 19px 0 19px;
  box-shadow: var(--card-shadow);
  border: 2px solid #E3E8EF;
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 320px;
  padding: 28px 18px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.article-cards li:hover {
  box-shadow: 0 8.5px 32px 0 rgba(26,35,126,0.13);
  border-color: var(--primary-light);
}
.article-cards .category {
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 2px 12px 2px 10px;
  display: inline-block;
}
.article-cards a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 700;
  transition: color .17s;
}
.article-cards a:hover { color: var(--primary); }

/* ------------ CATEGORY FILTER (article) ------------ */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 21px;
  font-size: 1rem;
}
.categories-filter a {
  color: var(--primary-light);
  border-bottom: 1.5px solid transparent;
  font-weight: 600;
  margin: 0 1px;
  padding: 1px 3px;
  transition: color .15s, border .15s;
}
.categories-filter a:hover, .categories-filter a:focus {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}

/* ------------ TESTIMONIALS ------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--testimonial-bg);
  border-radius: 0 18px 0 18px;
  border: var(--testimonial-border);
  color: var(--testimonial-text);
  box-shadow: 0 2px 11px 0 rgba(26,35,126,0.07);
  margin-bottom: 24px;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 240px;
  min-height: 90px;
  transition: box-shadow var(--transition), border-color var(--transition);
  font-size: 1.04rem;
}
.testimonial-card p {
  color: var(--testimonial-text);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 7px 0;
}
.testimonial-card span {
  display: block;
  color: var(--grey900);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .01em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 5px 28px 0 rgba(0,184,212,.12);
  border-color: var(--secondary);
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 1rem;
  }
}

.user-story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.user-story-cards .testimonial-card {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
}
@media (max-width: 900px) {
  .user-story-cards { flex-direction: column; gap: 13px; }
}

/* -------------- CTA BAR -------------- */
.content-wrapper > .cta-button,
.card > .cta-button, 
.content-wrapper > div > .cta-button,
.contact-cta > .cta-button {
  margin-top: 14px;
  align-self: flex-start;
}

/* -------------- INPUT (newsletter) -------------- */
.content-wrapper input[type="email"] {
  min-width: 220px;
  font-size: 1rem;
  border: 2px solid var(--secondary-light);
  border-radius: 8px;
  padding: 11px 12px;
  margin-right: 13px;
  background: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: border .16s;
}
.content-wrapper input[type="email"]:focus {
  border: 2px solid var(--secondary);
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: #fff;
  border-top: 2px solid var(--secondary);
  margin-top: 40px;
  box-shadow: 0 -2px 8px 0 rgba(0,184,212,.05);
}
footer > .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  justify-content: space-between;
  padding: 38px 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
}
.footer-brand img {
  width: 39px; height: 39px; min-width: 39px; min-height: 39px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 2px solid transparent;
  transition: border .15s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #c7d3e9;
  font-size: .97rem;
}
.footer-contact img {
  display: inline-block; vertical-align: middle; margin-right: 7px; height: 19px; width: 19px;
}

@media (max-width: 900px) {
  footer > .container {
    flex-direction: column;
    gap: 30px;
    padding: 26px 8px;
    align-items: flex-start;
  }
}

/* ================== COOKIE CONSENT BANNER & MODAL ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 18px 18px 18px;
  box-shadow: 0 -3px 24px 0 rgba(26,35,126,0.13);
  border-radius: 28px 28px 0 0;
  gap: 24px;
  font-size: 1rem;
  animation: cookie-banner-in 0.6s cubic-bezier(.56,0,.22,1);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 340px;
  margin-right: 26px;
  font-size: 1.05rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(0,184,212,0.075);
  transition: background .16s, color .16s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .accept:hover { background: var(--secondary); color: #fff; }
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}
.cookie-banner .reject:hover {
  background: var(--grey300);
}
.cookie-banner .settings {
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.cookie-banner .settings:hover { background: var(--accent); color: var(--primary); }

@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 18px; padding: 18px 7px; }
  .cookie-banner .cookie-btn-group { justify-content: flex-end; }
}

/* ------------ COOKIE MODAL ------------ */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(26,35,126,0.54);
  z-index: 1220;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: var(--grey900);
  border-radius: 20px;
  box-shadow: 0 8px 42px 0 rgba(26,35,126,0.28);
  padding: 38px 30px;
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in .33s cubic-bezier(.56,0,.22,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(58px) scale(.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal .toggle {
  width: 40px;
  height: 24px;
  border-radius: 16px;
  border: 2px solid var(--secondary);
  background: #e3f8fe;
  position: relative;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal .toggle[data-enabled="true"] {
  background: var(--secondary);
}
.cookie-modal .toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute; left: 2px; top: 2px;
  transition: left .18s;
}
.cookie-modal .toggle[data-enabled="true"]::before {
  left: 20px;
}
.cookie-modal .toggle[aria-disabled="true"] {
  background: #e3f8fe;
  opacity: .57;
  cursor: not-allowed;
  border-style: dashed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 19px;
  margin-top: 11px;
}
.cookie-modal .cookie-modal-accept {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 18px;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(255,214,0,0.06);
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal .cookie-modal-accept:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .cookie-modal-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .12s;
}
.cookie-modal .cookie-modal-reject:hover {
  background: var(--grey300);
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: var(--primary-light);
  border: none;
  font-size: 1.8rem;
  align-self: flex-end;
  cursor: pointer;
  margin-top: -18px;
  margin-right: -10px;
}

@media (max-width: 600px) {
  .cookie-modal { min-width: 84vw; padding: 22px 9px; }
}

/* ================== GENERAL STRUCTURED LAYOUTS ========================= */
div, section, article {
  box-sizing: border-box;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}
.content-wrapper.text-section {
  gap: 20px;
}
@media (max-width: 900px) {
  .text-section { max-width: 99vw; }
}

.content-wrapper > ul,
.text-section > ul {
  margin-top: 7px;
  margin-bottom: 7px;
  padding-left: 0;
}
.content-wrapper > ul > li,
.text-section > ul > li {
  margin-bottom: 11px;
  padding-left: 0;
}

/* ================== MICRO-INTERACTIONS & EFFECTS ======================= */
a, button, .card, .cta-button, .feature-grid li,
.values-list li, .testimonial-card, .article-cards li, .service-cards li {
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.card:active, .cta-button:active {
  transform: translateY(2px) scale(0.98);
}
.cta-button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

/* ================== MISCELLANEOUS ======================= */
::-webkit-scrollbar {
  width: 8px; height: 8px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 9px;
}
main {
  flex: 1 0 auto;
  margin: 0 0 50px 0;
}

/* =============== UTILITIES =============== */
.flex-wrap { flex-wrap: wrap !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.gap-20 { gap: 20px !important; }

/* ================== MEDIA QUERIES: Adapt for mobile ==================== */
@media (max-width: 660px) {
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.11rem; }
  .footer-brand span { font-size: .91rem; }
  .footer-contact { font-size: .91rem; }
}

/* ================== PRINT STYLES ==================== */
@media print { * {background: none !important; color: #000 !important; box-shadow: none !important;} }

/* ================== END Arrapsatel Style ============================= */
