/* =====================
   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, strike, 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,
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 {
  line-height: 1;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ol, ul {
  list-style: none;
}

a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

input, textarea {
  font-family: inherit;
  outline: none;
}

/* ===========================================
   BASE TYPOGRAPHY & BRAND VARIABLES (FALLBACKS)
   =========================================== */
:root {
  --primary: #233347;
  --secondary: #879F7E;
  --accent: #F3ECD4;
  --bg: #F8F8F6;
  --text: #233347;
  --card-bg: #fff;
  --border: #E1E7EB;
  --shadow: 0 2px 16px rgba(35,51,71,0.06);
  --radius: 16px;
  --radius-sm: 9px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin-bottom: 0.6em;
  /* angular sharp style */
  text-transform: none;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 0.7em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.8em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}
p, ul, ol, blockquote {
  font-size: 1.08rem;
  margin-bottom: 0.8em;
  color: var(--text);
}
blockquote {
  background: var(--accent);
  color: var(--primary);
  border-left: 5px solid var(--secondary);
  padding: 1.2em 1.5em;
  border-radius: var(--radius-sm);
  font-style: italic;
  margin-bottom: 1.5em;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}

strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

/* ================
   HEADER & NAV BAR
   ================ */
header {
  width: 100%;
  background: var(--accent);
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 7px rgba(35,51,71,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary);
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
  font-size: 1rem;
  padding: 7px 0;
}
header nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 7px;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
  transform: scaleX(0.8);
}
header nav a:hover::after, header nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
}
.primary-btn, .secondary-btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 11px 32px;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  transition: background .22s cubic-bezier(.4,0,.2,1), color .22s cubic-bezier(.4,0,.2,1), box-shadow .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  margin-top: 8px;
  margin-bottom: 8px;
  background-clip: padding-box;
  box-shadow: 0 2px 12px rgba(35,51,71,0.06);
}
.primary-btn {
  background: var(--primary);
  color: #fff;
}
.primary-btn:hover, .primary-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(135,159,126,0.11);
  transform: translateY(-2px) scale(1.02);
}
.secondary-btn {
  background: var(--secondary);
  color: #fff;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* MOBILE BURGER BUTTON */
.mobile-menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: 2px solid var(--primary);
  border-radius: 10px;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================
   MOBILE OFFCANVAS NAV
   ======================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 9000;
  left: 0; top: 0; bottom: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 6px 0 40px rgba(35,51,71,0.18);
  transform: translateX(-105%);
  transition: transform .32s cubic-bezier(.74,.01,.13,.97);
  padding: 32px 20px 36px 20px;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.9rem;
  color: var(--primary);
  background: none;
  border: 0;
  padding: 0 8px;
  border-radius: 10px;
  transition: background .19s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-top: 18px;
}
.mobile-nav a {
  font-size: 1.26rem;
  padding: 14px 12px;
  color: var(--primary);
  border-radius: 7px;
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  font-weight: 600;
  transition: background .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

/* Overlay for mobile menu (optional, for dimming) */
.mobile-menu-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(35,51,71,0.23);
  z-index: 8999;
  display: none;
}
.mobile-menu.active ~ .mobile-menu-backdrop {
  display: block;
}

/* ===========
   HERO SECTIONS
   =========== */
.hero {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 62px 0 56px 0;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 220px;
  justify-content: center;
}
.hero .content-wrapper {
  color: #fff;
  max-width: 720px;
  gap: 24px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.16;
}
.hero p {
  color: #F3ECD4;
  font-size: 1.15rem;
  font-family: var(--font-body);
}
.hero .primary-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.08rem;
  margin-top: 16px;
  letter-spacing: 0.06em;
}
.hero .primary-btn:hover,
.hero .primary-btn:focus {
  background: #fff;
  color: var(--secondary);
}

/* ====================
   SECTIONS & FLEX LAYOUTS
   ==================== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 26px 8px;
    margin-bottom: 39px;
  }
}

.card-container, .feature-grid, .service-grid, .case-study-list, .tip-grid, .benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 23px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 1.5px solid var(--border);
  min-width: 225px;
}
.card h3 {
  margin-top: 0.5em;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 36px rgba(35,51,71,0.09);
  border-color: var(--secondary);
  transition: box-shadow .21s, border .21s;
}

.feature-grid > div, .service-grid > div, .tip-grid > div, .case-study-list > div {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 340px;
  padding: 26px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: box-shadow .19s;
}
.feature-grid > div img, .service-grid > div img, .tip-grid > div img, .case-study-list > div img {
  width: 47px;
  height: 47px;
  margin-bottom: 9px;
}
.feature-grid > div:hover, .service-grid > div:hover, .tip-grid > div:hover, .case-study-list > div:hover {
  box-shadow: 0 8px 24px rgba(33,42,69,.11);
  border-color: var(--secondary);
}
.service-grid .service-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  margin-top: 12px;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.benefit-icons {
  gap: 32px;
}
.benefit-icons > div {
  background: var(--accent);
  border-radius: 21px;
  box-shadow: none;
  padding: 22px 20px;
  align-items: center;
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.14rem;
  text-align: center;
  min-width: 180px;
  font-weight: 600;
}
.benefit-icons img {
  width: 36px; height: 36px;
  margin-bottom: 13px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .feature-grid, .service-grid, .tip-grid, .case-study-list, .benefit-icons, .content-grid, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 22px rgba(35,51,71,0.06);
  border-radius: 17px;
  padding: 20px 32px 20px 32px;
  margin-bottom: 20px;
  border: 1.3px solid var(--border);
  min-width: 250px;
  max-width: 720px;
  transition: box-shadow .18s, border .18s;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  font-style: italic;
  text-align: center;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.testimonial-card div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  width: 24px; height: 24px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(33,42,69,.13);
  border-color: var(--secondary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= FOOTER ========== */
footer {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  padding: 50px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: center;
  margin-top: 13px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.012em;
  font-weight: 600;
  transition: color .15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 13px;
  color: #fff;
  font-size: 1.03rem;
}
.footer-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .91;
}
.footer-info img {
  width: 20px; height: 20px;
}
footer a img, footer img {
  filter: brightness(0) invert(1);
  height: 36px;
}

@media (max-width: 768px) {
  footer .container {
    gap: 17px;
    padding: 0 0 18px 0;
  }
  .footer-info {
    gap: 13px;
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============
   ACCORDION/FAQ (for diy-talleres)
   =============== */
.faq-list, .questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list li, .questions-list li {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: 0 2px 14px rgba(135,159,126,.07);
  margin-bottom: 7px;
  font-family: var(--font-body);
}

/* ===============
   PRIVACY NOTICE
   =============== */
.privacy-notice {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 15px;
  font-size: 1rem;
  margin-top: 0.5em;
}
.privacy-notice a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 4px;
}

/* ===============
   UTILITY STYLES
   =============== */
.text-center { text-align: center; justify-content: center; align-items: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }

/* ===============
   RESPONSIVE MEDIA QUERIES
   =============== */
@media (max-width: 600px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.6rem; }
  .container, .content-wrapper { padding-left: 12px; padding-right: 12px; }
  .feature-grid > div, .service-grid > div, .tip-grid > div, .case-study-list > div {
    min-width: 175px;
    padding: 16px 10px 14px 10px;
  }
  .testimonial-card { padding: 16px 7vw; }
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10500;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  box-shadow: 0 -2px 22px rgba(35,51,71,0.06);
  padding: 19px 40px 22px 40px;
  font-size: 1rem;
  border-top: 2.5px solid var(--secondary);
  animation: banner-slide-in 0.48s cubic-bezier(.6,.1,.09,1);
}
@keyframes banner-slide-in {
  0%   { transform: translateY(150%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 1 1 auto;
  max-width: 530px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 40px;
  border: none;
  font-size: 1rem;
  outline: none;
  margin: 0 2px;
  transition: background .19s, color .19s, box-shadow .14s, transform .19s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(135,159,126,0.13);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #fff;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-settings-btn {
  background: var(--primary);
  color: #fff;
  border: 0;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 19px 7vw 20px 7vw;
  }
  .cookie-banner__actions {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(23,27,32,0.55);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  padding: 32px 36px 30px 36px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 6px 24px rgba(35,51,71, 0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-fade-in .48s cubic-bezier(.48,.2,.04,.92);
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: translateY(-70px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal__close {
  background: none;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  border-radius: 13px;
  padding: 0 7px;
  transition: background .15s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 15px 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  font-size: 1.05rem;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: var(--secondary);
}
.cookie-category .category-label {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cookie-category.essential input[type=checkbox] {
  filter: grayscale(1) brightness(0.7);
}
.cookie-category.essential .category-label {
  color: var(--secondary);
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 17px;
}

@media (max-width: 480px) {
  .cookie-modal__content { padding: 15vw 7vw; min-width: unset; max-width: 99vw; }
}

/* ===============
   GEOMETRIC DECORATIVE ELEMENTS (subtle)
   =============== */
.section-angle {
  position: absolute;
  height: 62px;
  width: 100vw;
  left: 0; right: 0;
  top: -35px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(97deg, var(--accent) 60%, rgba(248,248,246,0) 100%);
  clip-path: polygon(0% 0%, 100% 35%, 100% 100%, 0% 100%);
}

/* ===============
   ANIMATIONS/MICRO INTERACTIONS
   =============== */
.primary-btn, .secondary-btn, .cookie-btn, .cookie-settings-btn, header nav a {
  transition: all 0.22s cubic-bezier(.43,0,.16,1);
}
.card, .feature-grid > div, .service-grid > div, .tip-grid > div, .case-study-list > div, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.14s, transform 0.18s;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover, .case-study-list > div:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.012);
}

/* ================================
   SPACING/ALIGNMENT (MANDATORY PATTERN)
   ================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   OVERLAY SCROLL LOCK for open nav or modals
   =============== */
.body-lock-scroll {
  overflow: hidden !important;
  position: relative;
  height: 100vh !important;
}

/* ===============
   PRINT STYLES (for GDPR/legal privacy)
   =============== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ===============
   ERROR/INFO STATES
   =============== */
.info-message, .error-message {
  background: #FFECEC;
  color: #a32121;
  border-left: 4px solid #e97f7f;
  padding: 13px 18px;
  border-radius: 13px;
  margin-bottom: 19px;
  font-size: 1.01rem;
}

/* ===============
   LEGAL NOTICES (legal pages)
   =============== */
.legal-text {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 28px 21px;
  font-size: 1.02rem;
  color: var(--primary);
}
.legal-text h2, .legal-text h3 { color: var(--secondary); }

/* ===============
   SCROLLBAR STYLES
   =============== */
::-webkit-scrollbar { width: 11px; background: var(--accent); }
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 40px;
}

/* ===============
   FONT IMPORTS (fallbacks)
   =============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
