/* =============================================
   CONGUXARI — Identidad visual (hoja membretada)
   Navy: #1A1F2B | Amarillo: #F9A800 | Gris: #D1D3D4
   ============================================= */

:root {
  --navy: #1A1F2B;
  --navy-light: #2A3142;
  --yellow: #F9A800;
  --yellow-dark: #E09600;
  --yellow-light: #FFD054;
  --grey: #D1D3D4;
  --grey-light: #F0F1F2;
  --grey-dark: #8A8D91;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #5A5E66;
  --sidebar-width: 48px;
  --toolbar-height: 38px;
  --header-height: 80px;
  --site-header-height: calc(var(--toolbar-height) + var(--header-height));
  --black: #0A0A0A;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(26, 31, 43, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 31, 43, 0.18);
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 16px);
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---- Barra lateral decorativa ---- */
.sidebar-accent {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.sidebar-accent__layer {
  position: absolute;
  left: 0;
  width: 100%;
}

.sidebar-accent__layer--navy {
  top: 0;
  height: 28%;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.sidebar-accent__layer--grey {
  top: 22%;
  height: 12%;
  background: var(--grey);
  clip-path: polygon(0 0, 100% 30%, 100% 70%, 0 100%);
  opacity: 0.85;
}

.sidebar-accent__layer--yellow {
  top: 30%;
  height: 38%;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
  box-shadow: 4px 0 12px rgba(0,0,0,0.15);
}

.sidebar-accent__layer--navy-bottom {
  bottom: 0;
  height: 28%;
  background: var(--navy);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

/* ---- Site header (toolbar + nav) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ---- Toolbar negro ---- */
.toolbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  height: var(--toolbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: none;
  margin-inline: auto;
  height: 100%;
  gap: 1rem;
}

.toolbar__contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.toolbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.toolbar__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--yellow);
}

.toolbar__link strong {
  font-weight: 700;
  color: var(--white);
}

.toolbar__link:hover {
  color: var(--yellow);
}

.toolbar__link:hover strong {
  color: var(--yellow);
}

.toolbar__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.toolbar__location svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
}

.toolbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.toolbar__cta {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  background: var(--grey-dark);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.toolbar__cta:hover {
  background: var(--grey);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ---- Header / Nav ---- */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-light);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled .header {
  box-shadow: 0 4px 24px rgba(26, 31, 43, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 80%;
  max-width: none;
  margin-inline: auto;
  height: 100%;
}

.header__brand {
  flex-shrink: 0;
}

.header__logo {
  height: 68px;
  width: auto;
}

.header__company {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.header__company-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
}

.header__company-tag {
  font-size: 0.65rem;
  color: var(--grey-dark);
  letter-spacing: 0.04em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav__link:hover {
  color: var(--navy-light);
  background: rgba(249, 168, 0, 0.08);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--navy);
  font-weight: 700;
}

.nav__item-cta {
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--grey-light);
}

.nav__link--cta {
  background: var(--yellow);
  color: var(--navy);
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(249, 168, 0, 0.35);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--yellow-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 168, 0, 0.45);
}

.nav__link--cta.is-active {
  background: var(--yellow-dark);
  box-shadow: 0 4px 16px rgba(249, 168, 0, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ---- Botones ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(249, 168, 0, 0.4);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 24px rgba(249, 168, 0, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--full {
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy) url('../assets/foto-002.jpg') center / cover no-repeat;
  color: var(--white);
  padding: calc(5rem - 25px) 0 calc(6rem - 25px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 12, 18, 0.94) 0%,
    rgba(10, 12, 18, 0.88) 45%,
    rgba(10, 12, 18, 0.78) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-left: calc(var(--sidebar-width) + 0.5rem);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(1.85rem, 4.25vw, 2.85rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero__title-accent {
  color: var(--yellow);
}

.hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--white);
  line-height: 0;
}

.hero__road svg {
  width: 100%;
  height: 120px;
}

/* ---- Secciones ---- */
.section {
  padding: 5rem 0;
}

.section .container {
  padding-left: calc(var(--sidebar-width) + 0.5rem);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section--about {
  background: var(--grey-light);
}

.section--services {
  background: var(--white);
}

.section--values {
  background: var(--navy);
  padding: 4rem 0;
}

.section--contact {
  background: var(--grey-light);
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.about-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-card--main p + p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.about-card--photo {
  padding: 0;
  overflow: hidden;
}

.about-card__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ---- Servicios ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.service-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  grid-column: span 1;
}

.service-card--featured:hover {
  border-color: var(--yellow);
}

.service-card--featured p {
  color: rgba(255,255,255,0.75);
}

.service-card--featured .service-card__icon {
  color: var(--yellow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--yellow-dark);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: inherit;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-card__tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-card__tags li {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 4px;
}

.service-card--featured .service-card__tags li {
  background: rgba(249, 168, 0, 0.2);
  color: var(--yellow);
}

/* ---- Valores ---- */
.values-banner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.values-banner__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.values-banner__text p {
  color: rgba(255,255,255,0.7);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.values-list li {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.values-list strong {
  display: block;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.values-list span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ---- Contacto ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-dark);
  margin-bottom: 0.2rem;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.contact-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ---- Formulario ---- */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(249, 168, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn--whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #25D366;
  color: var(--white);
  text-align: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.btn--whatsapp__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.btn--whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.contact-form__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted, #6b7280);
  text-align: center;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 5rem;
  overflow: hidden;
}

.footer__road {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgba(255,255,255,0.06);
  line-height: 0;
}

.footer__road svg {
  width: 100%;
  height: 80px;
}

.footer__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  padding-left: calc(var(--sidebar-width) + 0.5rem);
}

.footer__brand img {
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer__brand p {
  font-size: 0.85rem;
  max-width: 280px;
}

.footer__links {
  margin-top: 50px;
}

.footer__links ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer__links li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer__links li::marker {
  color: var(--yellow);
}

.footer__links a:hover {
  color: var(--yellow);
}

.footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0 1.5rem;
  padding-left: calc(var(--sidebar-width) + 0.5rem);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--yellow);
}

/* ---- Acciones flotantes (scroll-up + WhatsApp) ---- */
.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}

.scroll-up {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.scroll-up svg {
  width: 1.5rem;
  height: 1.5rem;
}

.scroll-up:hover,
.scroll-up:focus-visible {
  background: var(--navy-light);
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
}

.scroll-up:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.scroll-up.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

/* ---- Widget WhatsApp ---- */
.whatsapp-widget {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.whatsapp-widget__bubble {
  padding: 0.55rem 1rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-widget:hover .whatsapp-widget__bubble,
.whatsapp-widget:focus-visible .whatsapp-widget__bubble {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-widget__btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-widget:hover .whatsapp-widget__btn,
.whatsapp-widget:focus-visible .whatsapp-widget__btn {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-widget:focus-visible {
  outline: none;
}

.whatsapp-widget:focus-visible .whatsapp-widget__btn {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* ---- Página legal ---- */
.legal-page__hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}

.legal-page__hero-inner {
  padding-left: calc(var(--sidebar-width) + 0.5rem);
}

.legal-page__back {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  transition: opacity var(--transition);
}

.legal-page__back:hover {
  opacity: 0.8;
}

.legal-page__hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page__hero p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.legal-page__content {
  padding: 3.5rem 0 5rem;
  padding-left: calc(var(--sidebar-width) + 0.5rem);
  max-width: 820px;
}

.legal-page__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--yellow);
}

.legal-section {
  margin-bottom: 2.25rem;
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-light);
  margin: 1.25rem 0 0.65rem;
}

.legal-section p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.925rem;
}

.legal-section a {
  color: var(--yellow-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--navy);
}

.legal-list {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
}

.legal-list li {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 0.45rem;
}

.legal-list li::marker {
  color: var(--yellow-dark);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .values-banner {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .toolbar__location,
  .toolbar__divider {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 20px;
    --toolbar-height: 68px;
  }

  .toolbar {
    height: auto;
    min-height: var(--toolbar-height);
    padding: 0.5rem 0;
  }

  .toolbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .toolbar__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .toolbar__meta {
    width: 100%;
    justify-content: flex-end;
  }

  .header__company {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--site-header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    padding: 1rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.875rem 1rem;
  }

  .nav__link::after {
    left: 1rem;
    right: auto;
    width: 24px;
  }

  .nav__item-cta {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--grey-light);
  }

  .nav__link--cta {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: calc(3.5rem - 25px) 0 calc(5rem - 25px);
  }

  .hero__stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }

  .scroll-up {
    width: 3rem;
    height: 3rem;
  }

  .scroll-up svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .whatsapp-widget__bubble {
    opacity: 1;
    transform: translateX(0);
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

  .whatsapp-widget__btn {
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-widget__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
