/* =========================================================
   Sarao Comunicación — main.css
   Diseño moderno, responsive y accesible.
   ========================================================= */

:root {
	--green:        #4A9B7F;
	--green-dark:   #357a62;
	--green-soft:   #e8f4ef;
	--ink:          #242038;
	--ink-soft:     #322c4d;
	--accent:       #FC9F5B;
	--accent-dark:  #f0863a;
	--muted:        #6b6b78;
	--text:         #2b2b33;
	--bg:           #ffffff;
	--surface:      #f6f8f7;
	--surface-2:    #eef3f1;
	--line:         #e4e8e6;
	--white:        #ffffff;

	--radius-sm: 10px;
	--radius:    18px;
	--radius-lg: 28px;
	--radius-xl: 40px;

	--shadow-sm: 0 2px 8px rgba(36, 32, 56, .06);
	--shadow:    0 14px 40px rgba(36, 32, 56, .10);
	--shadow-lg: 0 30px 70px rgba(36, 32, 56, .16);

	--container: 1180px;
	--gutter: clamp(1.1rem, 4vw, 2.5rem);
	--header-h: 90px;

	--font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ligero ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .4em; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

/* ---------- Accesibilidad ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
	font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--values, .section--services { background: var(--surface); }
.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.section__eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin: 0 0 .7rem; }
.section__title { font-size: clamp(1.7rem, 4.2vw, 2.7rem); margin: 0 0 .5rem; }
.section__title--left { text-align: left; }
.section__intro { color: var(--muted); font-size: 1.08rem; margin: 0; }
.lead-text { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: #44444f; }
.prose { max-width: 820px; }
.prose .lead-text { max-width: 760px; }

/* ---------- Botones ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--font-head); font-weight: 600; font-size: 1rem;
	padding: .8rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
	line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(74,155,127,.32); }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--accent { background: var(--accent); color: #3a2410; box-shadow: 0 8px 22px rgba(252,159,91,.36); }
.btn--accent:hover { background: var(--accent-dark); color: #2a1a0a; }
.btn--secondary { background: var(--ink); color: #fff; }
.btn--secondary:hover { background: var(--ink-soft); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(36,32,56,.18); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-soft); }

/* ---------- Cabecera ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(36,32,56,.06);
	transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(36,32,56,.10); background: rgba(255,255,255,.9); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); transition: min-height .35s var(--ease); }
.site-header.is-scrolled .site-header__inner { min-height: 72px; }
.site-header__brand { display: inline-flex; align-items: center; transition: transform .35s var(--ease); transform-origin: left center; }
.site-header__brand:hover { transform: scale(1.04); }
.site-header__logo { height: clamp(48px, 6.4vw, 64px); width: auto; transition: height .35s var(--ease); filter: drop-shadow(0 6px 14px rgba(74,155,127,.18)); }
.site-header.is-scrolled .site-header__logo { height: clamp(40px, 5vw, 50px); }
.site-header__title { font-family: var(--font-head); font-weight: 800; color: var(--green); font-size: 1.6rem; }

.nav { display: flex; align-items: center; }
.nav__wrap { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav__list a {
	font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 1rem;
	position: relative; padding: .3rem 0;
}
.nav__list a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
	background: var(--green); border-radius: 2px; transition: right .25s var(--ease);
}
.nav__list a:hover, .nav__list .current-menu-item > a { color: var(--green-dark); }
.nav__list a:hover::after, .nav__list .current-menu-item > a::after { right: 0; }
.nav__cta { white-space: nowrap; }

.nav__toggle {
	display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
	border: 0; background: transparent; cursor: pointer; padding: 10px; border-radius: 12px;
}
.nav__toggle-bar { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 3px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero portada ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 7rem) 0; background: linear-gradient(180deg, var(--green-soft) 0%, #fff 78%); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; will-change: transform; }
.hero__blob--1 { width: 420px; height: 420px; background: #9fd9c4; top: -120px; right: -80px; animation: blob-float 14s ease-in-out infinite; }
.hero__blob--2 { width: 320px; height: 320px; background: #ffd1ad; bottom: -120px; left: -60px; opacity: .5; animation: blob-float 18s ease-in-out infinite reverse; }
.hero__blob--3 { width: 260px; height: 260px; background: #c5bdf0; top: 40%; left: 45%; opacity: .35; animation: blob-float 22s ease-in-out infinite; }
@keyframes blob-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(40px, -30px) scale(1.08); }
	66% { transform: translate(-30px, 25px) scale(.94); }
}
.hero__inner { position: relative; max-width: 880px; text-align: center; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__eyebrow { font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 2.4vw, 1.3rem); color: var(--ink); margin: 0 0 .3rem; }
.hero__title { font-size: clamp(2.6rem, 9vw, 5.2rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 1.2rem; }
.hero__accent {
	position: relative; white-space: nowrap;
	background: linear-gradient(100deg, var(--green) 0%, #6fc6a4 30%, var(--accent) 70%, var(--green) 100%);
	background-size: 220% 100%;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	animation: gradient-pan 6s linear infinite;
}
@keyframes gradient-pan { to { background-position: 220% 0; } }
.hero__lead { font-size: clamp(1.05rem, 2.3vw, 1.3rem); color: #45454f; max-width: 660px; margin: 0 auto 2rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Entrada escalonada del hero (CSS puro, sin depender de JS) */
.hero__eyebrow, .hero__title, .hero__lead, .hero__actions {
	opacity: 0; animation: hero-rise .9s var(--ease) forwards;
}
.hero__eyebrow { animation-delay: .05s; }
.hero__title   { animation-delay: .18s; }
.hero__lead    { animation-delay: .32s; }
.hero__actions { animation-delay: .46s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Marquee ---------- */
.marquee { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: .9rem 0; --speed: 32s; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: marquee var(--speed) linear infinite; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.marquee__track span { opacity: .92; }
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Tarjetas de servicio ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.cards--services { grid-template-columns: repeat(3, 1fr); }
.card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: 1.8rem 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
	position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__num { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--green); background: var(--green-soft); width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 1rem; }
.card--lg { padding: 2.2rem 2rem; }
.card__title { font-size: 1.2rem; margin: 0 0 .5rem; }
.card__text { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Sección propósito ---------- */
.section--purpose { background: var(--bg); }
.purpose { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.purpose__text { color: #45454f; font-size: 1.1rem; }
.purpose__list { list-style: none; display: grid; gap: .7rem; margin: 0 0 1.8rem; }
.purpose__list li { position: relative; padding-left: 2rem; color: #45454f; }
.purpose__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(252,159,91,.2); }
.purpose__stats { display: grid; gap: 1rem; }
.stat { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%); color: #fff; border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; display: flex; align-items: baseline; gap: 1rem; box-shadow: var(--shadow); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--accent); line-height: 1; }
.stat__label { color: rgba(255,255,255,.82); font-size: 1rem; }

/* ---------- Valores ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.value { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.8rem; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-soft); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.value__icon svg { width: 28px; height: 28px; }
.value__title { font-size: 1.25rem; margin: 0 0 .4rem; }
.value__text { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- CTA ---------- */
.cta { padding-block: clamp(3rem, 7vw, 5rem); }
.cta__inner {
	background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
	border-radius: var(--radius-xl); padding: clamp(2.2rem, 6vw, 4rem);
	display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
	position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta__inner::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); top: -140px; right: -80px; }
.cta__title { color: #fff; font-size: clamp(1.8rem, 5vw, 2.8rem); margin: 0 0 .3rem; position: relative; }
.cta__lead { color: rgba(255,255,255,.92); margin: 0; font-size: 1.1rem; position: relative; max-width: 520px; }
.cta .btn { position: relative; }

/* ---------- Cabecera interior ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--green-soft), #fff); padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3rem); }
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__inner { position: relative; max-width: 820px; }
.page-hero__eyebrow { font-family: var(--font-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); font-size: .85rem; margin: 0 0 .6rem; }
.page-hero__title { font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 800; margin: 0 0 .6rem; }
.page-hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #45454f; margin: 0; }

/* ---------- Contacto ---------- */
.contacto { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contacto__list { list-style: none; display: grid; gap: 1rem; margin: 1.5rem 0; }
.contacto__list li { display: flex; align-items: center; gap: .9rem; font-size: 1.1rem; }
.contacto__icon { width: 46px; height: 46px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contacto__icon svg { width: 24px; height: 24px; }
.contacto__note { color: var(--muted); font-size: .98rem; }

/* ---------- Formulario ---------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form__row { margin-bottom: 1.1rem; }
.form__label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); margin-bottom: .4rem; }
.form__label span { color: var(--accent-dark); }
.form__input {
	width: 100%; font: inherit; color: var(--text); background: var(--surface);
	border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1rem;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form__input:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(74,155,127,.14); }
textarea.form__input { resize: vertical; min-height: 130px; }
.form__submit { width: 100%; margin-top: .4rem; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__legal { font-size: .85rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }
.form__notice { border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-weight: 500; margin: 0 0 1.3rem; }
.form__notice--ok { background: var(--green-soft); color: var(--green-dark); border: 1px solid #bfe3d6; }
.form__notice--error { background: #fdece4; color: #b4471c; border: 1px solid #f6c9b1; }

/* ---------- Contenido (páginas legales) ---------- */
.entry-content h2 { font-size: 1.5rem; margin-top: 2rem; }
.entry-content h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content a { text-decoration: underline; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }

/* ---------- Pie ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); margin-top: 0; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(3rem, 6vw, 4.5rem); }
.site-footer__logo { height: 46px; width: auto; margin-bottom: 1.1rem; }
.site-footer__tagline { max-width: 320px; font-size: .98rem; }
.site-footer__email { display: inline-block; margin-top: .4rem; color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.site-footer__email:hover { color: #ffd1ad; }
.site-footer__heading { font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 1.1rem; }
.site-footer__menu { list-style: none; display: grid; gap: .65rem; }
.site-footer__menu a { color: rgba(255,255,255,.78); font-size: .98rem; }
.site-footer__menu a:hover { color: #fff; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.3rem; }
.site-footer__bar p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.6); text-align: center; }

/* ---------- Listado posts (fallback) ---------- */
.post-list { display: grid; gap: 1.5rem; }
.post-list__item { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }

/* =========================================================
   ANIMACIONES Y MICRO-INTERACCIONES
   ========================================================= */

/* Barra de progreso de lectura */
.scroll-progress {
	position: fixed; top: 0; left: 0; height: 3px; width: 0;
	background: linear-gradient(90deg, var(--green), var(--accent));
	z-index: 200; transition: width .1s linear; border-radius: 0 3px 3px 0;
}

/* Botones: brillo al pasar el ratón + pulso suave en el CTA */
.btn { position: relative; overflow: hidden; }
.btn::before {
	content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
	transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn:hover::before { left: 130%; }
.nav__cta { animation: cta-pulse 3.2s ease-in-out infinite; }
@keyframes cta-pulse {
	0%, 100% { box-shadow: 0 8px 22px rgba(252,159,91,.36); }
	50% { box-shadow: 0 8px 30px rgba(252,159,91,.6); }
}

/* Tarjetas: línea de acento que crece y elevación */
.card { overflow: hidden; }
.card::after {
	content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
	background: linear-gradient(90deg, var(--green), var(--accent)); transition: width .4s var(--ease);
}
.card:hover::after { width: 100%; }
.card__num { transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.card:hover .card__num { transform: translateY(-2px) rotate(-6deg); background: var(--green); color: #fff; }

/* Iconos de valores: rebote sutil al pasar */
.value__icon { transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.value:hover .value__icon { transform: translateY(-4px) scale(1.08); background: var(--green); color: #fff; }

/* Estadísticas: elevación */
.stat { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Marquesina: se pausa al pasar el ratón */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Revelado al hacer scroll (se activa solo con JS presente) */
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Respeta la preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
	.hero__blob, .nav__cta, .hero__accent { animation: none !important; }
	.hero__eyebrow, .hero__title, .hero__lead, .hero__actions { opacity: 1 !important; animation: none !important; }
	.hero__accent { -webkit-text-fill-color: var(--green); color: var(--green); }
	.js [data-reveal] { opacity: 1 !important; transform: none !important; }
	.scroll-progress { display: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
	.cards { grid-template-columns: repeat(2, 1fr); }
	.cards--services { grid-template-columns: repeat(2, 1fr); }
	.values { grid-template-columns: repeat(2, 1fr); }
	.purpose { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
	/* Navegación móvil */
	.nav__toggle { display: flex; }
	.nav__wrap {
		position: fixed; inset: var(--header-h) 0 0; background: rgba(255,255,255,.98);
		backdrop-filter: blur(8px); flex-direction: column; justify-content: flex-start;
		gap: 0; padding: 1.5rem var(--gutter) 2.5rem; transform: translateX(100%);
		transition: transform .35s var(--ease); overflow-y: auto;
	}
	body.nav-open .nav__wrap { transform: translateX(0); }
	body.nav-open { overflow: hidden; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.nav__list li { border-bottom: 1px solid var(--line); }
	.nav__list a { display: block; padding: 1rem 0; font-size: 1.2rem; }
	.nav__list a::after { display: none; }
	.nav__cta { margin-top: 1.5rem; width: 100%; }

	.contacto { grid-template-columns: 1fr; }
	.contacto__form { order: 2; }
	.cta__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
	body { font-size: 16px; }
	.cards, .cards--services, .values { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.hero__actions .btn { width: 100%; }
	.stat { flex-direction: column; gap: .2rem; align-items: flex-start; }
}
