/* ---------- Tokens ---------- */
:root {
	--navy: #122850;
	--navy-deep: #0b1c3a;
	--navy-soft: #1c3a6b;
	--terracotta: #DA6742;
	--red: #D9483D;
	--gray: #3A3A3A;
	--white: #ffffff;
	--offwhite: #F5F6F8;
	--border: rgba(255,255,255,.12);
	--border-dark: rgba(18,40,80,.12);

	--font: 'Campton', 'Helvetica Neue', Arial, sans-serif;
	--wrap: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll suave gestionado por Lenis (ver main.js); si Lenis no carga, el navegador hace scroll normal */
body {
	margin: 0;
	font-family: var(--font);
	font-weight: 400;
	color: var(--gray);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 .5em; color: var(--navy); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }

/* ---------- Tratamiento de fotografía (duotono navy, no stock plano) ---------- */
.photo-treated { position: relative; overflow: hidden; }
.photo-treated img { filter: grayscale(45%) saturate(1.1) contrast(1.08) brightness(.92); }
.photo-treated::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(18,40,80,.5), rgba(18,40,80,.15) 60%);
	mix-blend-mode: multiply;
	pointer-events: none;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 90%; max-width: 1400px; margin: 0 auto; }
.wrap--narrow { max-width: 760px; }
.wrap--compact { width: 70%; }

@media (max-width: 780px) {
	.wrap--compact { width: 90%; }
}

/* ---------- Full-bleed (rompe el contenedor, ocupa 100vw) ---------- */
.full-bleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.eyebrow {
	display: inline-block;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .8rem;
	color: var(--terracotta);
	margin-bottom: .75rem;
}

.lead { font-size: 1.2rem; color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: .9em 1.8em;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	transition: transform .15s ease, background .2s ease;
}
.btn--accent { background: var(--terracotta); color: var(--white); }
.btn--accent:hover { background: var(--red); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
	background: var(--navy);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
}
.site-header__logo img { height: 40px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: 2rem; }
.site-header__menu { display: flex; gap: 1.75rem; }
.site-header__menu a {
	color: var(--white);
	font-weight: 500;
	font-size: .95rem;
	opacity: .85;
	transition: opacity .15s ease;
}
.site-header__menu a:hover { opacity: 1; }
.site-header__cta { white-space: nowrap; }

.site-header__social { display: flex; gap: .9rem; margin-left: 1.5rem; }
.site-header__social a { color: var(--white); opacity: .85; display: flex; }
.site-header__social a:hover { opacity: 1; color: var(--terracotta); }

@media (max-width: 880px) {
	.site-header__social { margin-left: 0; margin-top: 1.5rem; }
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
}
.site-header__toggle span { width: 24px; height: 2px; background: var(--white); }

@media (max-width: 880px) {
	.site-header__toggle { display: flex; }
	.site-header__nav {
		position: fixed;
		inset: 84px 0 0 0;
		background: var(--navy);
		flex-direction: column;
		align-items: flex-start;
		padding: 2rem 24px;
		gap: 1.5rem;
		transform: translateY(-110%);
		transition: transform .25s ease;
	}
	.site-header__nav.is-open { transform: translateY(0); }
	.site-header__menu { flex-direction: column; gap: 1.25rem; }
}

/* ---------- Hero ---------- */
.hero {
	background: var(--navy);
	color: var(--white);
	padding: 3rem 0;
}
.hero__frame {
	position: relative;
	overflow: hidden;
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	min-height: 82vh;
	border-radius: 28px;
	display: flex;
	align-items: flex-end;
}
.hero__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	filter: grayscale(40%) saturate(1.1) contrast(1.1) brightness(.75);
	animation: aalkab-kenburns 24s ease-in-out infinite alternate;
	will-change: transform;
}
@keyframes aalkab-kenburns {
	from { transform: scale(1) translate3d(0,0,0); }
	to   { transform: scale(1.14) translate3d(-1%,-1%,0); }
}
.hero__frame::after {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(to top right, rgba(218,103,66,.4), transparent 60%),
		linear-gradient(0deg, rgba(11,28,58,.92), rgba(11,28,58,.3) 55%, rgba(11,28,58,.12));
	z-index: 1;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding: 3.5rem; }
.hero h1 {
	color: var(--white);
	font-size: clamp(2.4rem, 5.2vw, 4.4rem);
	letter-spacing: -0.03em;
	font-weight: 800;
}
.hero__lead { font-size: 1.2rem; opacity: .92; }
.hero__tagline { font-weight: 600; color: var(--terracotta); }
.hero .btn { margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
	.hero__bg { animation: none; }
}

@media (max-width: 780px) {
	.hero { padding: 3rem 0; }
	.hero__frame { width: 94%; min-height: 70vh; border-radius: 20px; }
	.hero__inner { padding: 2rem; }
	.hero__bg { background-position: right center; }
}

/* ---------- Barra de confianza (cifras clave, justo bajo el hero) ---------- */
.trust-bar { background: var(--offwhite); padding: 3rem 0; }
.trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}
.trust-bar__number {
	display: block;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--terracotta);
	letter-spacing: -0.02em;
}
.trust-bar__label {
	display: block;
	margin-top: .25rem;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 600;
	color: var(--gray);
}

@media (max-width: 780px) {
	.trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sections ---------- */
.section { padding: 7.5rem 0; }
.section--alt { background: var(--offwhite); }
.section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3.5rem;
}

@media (max-width: 780px) {
	.section { padding: 4.5rem 0; }
}
.link-more { color: var(--terracotta); font-weight: 600; }

/* ---------- Milestones ---------- */
.milestones {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	text-align: center;
}
.milestone {
	background: var(--navy);
	color: var(--white);
	padding: 2rem 1rem;
	border-radius: 12px;
}
.milestone__label { display: block; font-weight: 700; font-size: 1.1rem; }
.milestone__en { display: block; margin-top: .25rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--terracotta); }

@media (max-width: 720px) {
	.milestones { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.card {
	background: var(--white);
	border: 1px solid var(--border-dark);
	border-radius: 14px;
	overflow: hidden;
	padding: 1.75rem;
}
.card__img { margin: -1.75rem -1.75rem 1.25rem; position: relative; overflow: hidden; }
.card__img img {
	width: 100%; height: 220px; object-fit: cover;
	filter: grayscale(35%) saturate(1.1) contrast(1.08) brightness(.95);
	transition: transform .6s cubic-bezier(.16,.8,.24,1), filter .4s ease;
}
.card:hover .card__img img { transform: scale(1.06); filter: grayscale(10%) saturate(1.15) contrast(1.08) brightness(1); }
.card { transition: border-color .3s ease; }
.card:hover { border-color: var(--terracotta); }
.card__eyebrow {
	display: block;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--terracotta);
	font-weight: 600;
	margin-bottom: .5rem;
}
.card__excerpt { color: var(--gray); }
/* ---------- Carrusel de servicios (home) ---------- */
.carousel { position: relative; }
.carousel__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: auto;
	padding: .25rem 5vw 1rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
	cursor: grab;
	user-select: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:active { cursor: grabbing; }
.carousel__slide {
	display: block;
	position: relative;
	flex: 0 0 320px;
	height: 420px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
}
.carousel__slide img { pointer-events: none; -webkit-user-drag: none; }
.carousel__slide img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(35%) saturate(1.1) contrast(1.08) brightness(.9);
	transition: transform .8s cubic-bezier(.16,.8,.24,1);
}
.carousel__slide:hover img { transform: scale(1.06); }
.carousel__caption {
	position: absolute; inset: auto 0 0 0;
	padding: 1.5rem;
	background: linear-gradient(0deg, rgba(11,28,58,.92) 10%, rgba(11,28,58,0) 90%);
	color: var(--white);
}
.carousel__caption h3 {
	color: var(--white);
	font-size: 1.3rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin: 0;
}
.carousel__caption span {
	display: block;
	margin-top: .25rem;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--terracotta);
	font-weight: 600;
}
@media (max-width: 780px) {
	.carousel__slide { flex-basis: 260px; height: 340px; }
}

/* ---------- Servicios: flujo en zigzag ---------- */
.service-flow { display: flex; flex-direction: column; gap: 3rem; }
.service-row {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 2.5rem;
	align-items: center;
	position: relative;
	padding-bottom: 3rem;
	border-bottom: 3px solid var(--offwhite);
}
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row--rev { grid-template-columns: 1.3fr 1fr; }
.service-row--rev .service-row__img { order: 2; }
.service-row--rev .service-row__text { order: 1; }
.service-row__img { overflow: hidden; border-radius: 14px; }
.service-row__img img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: center 25%;
	filter: grayscale(35%) saturate(1.1) contrast(1.08) brightness(.95);
	transition: transform .8s cubic-bezier(.16,.8,.24,1);
}
.service-row:hover .service-row__img img { transform: scale(1.05); }
.service-row__text h3 { margin-bottom: .25rem; }

@media (max-width: 780px) {
	.service-row, .service-row--rev { grid-template-columns: 1fr; }
	.service-row--rev .service-row__img,
	.service-row--rev .service-row__text { order: initial; }
}

.empty-state {
	grid-column: 1 / -1;
	padding: 2rem;
	border: 1px dashed var(--border-dark);
	border-radius: 12px;
	color: var(--gray);
	font-style: italic;
}

/* ---------- Unidades: tarjetas elegantes ---------- */
.units-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
	.units-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.units-grid { grid-template-columns: 1fr; }
}
.unit-card {
	background: var(--offwhite);
	border: 1px solid var(--border-dark);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	transition: border-color .25s ease, transform .25s ease;
}
.unit-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.unit-card__img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	margin-bottom: 1rem;
}
.unit-card__img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.unit-card h3 { margin: 0; font-size: 1.05rem; }

/* ---------- Stat ---------- */
.section--stat { background: var(--navy); color: var(--white); }
.stat { text-align: center; display: flex; flex-direction: column; gap: .25rem; }
.stat__number { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: var(--terracotta); }
.stat__label { font-size: 1.1rem; }
.stat__sub { opacity: .75; font-size: .95rem; }

/* ---------- Testimonios: carrusel de tarjetas ---------- */
.carousel--testimonials .carousel__slide,
.testimonial-card {
	flex: 0 0 420px;
	background: var(--navy);
	color: var(--white);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
}
.testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--terracotta);
	margin-bottom: 1.25rem;
}
.testimonial-card__quote {
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.55;
	flex-grow: 1;
	margin: 0 0 1.5rem;
}
.testimonial-card__author { display: flex; flex-direction: column; }
.testimonial-card__author strong { font-weight: 700; }
.testimonial-card__author span { font-size: .85rem; color: var(--terracotta); margin-top: .15rem; }

@media (max-width: 620px) {
	.carousel--testimonials .carousel__slide,
	.testimonial-card { flex-basis: 300px; }
}

/* ---------- CTA ---------- */
.section--cta { background: var(--offwhite); text-align: center; }
.cta h2 { margin-bottom: 1.5rem; }

.full-photo { line-height: 0; position: relative; overflow: hidden; }
.full-photo img {
	width: 100%; height: 520px; object-fit: cover;
	filter: grayscale(40%) saturate(1.1) contrast(1.1) brightness(.85);
}
.full-photo::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(18,40,80,.25), rgba(18,40,80,.05) 40%, rgba(18,40,80,.35));
}

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
	background: var(--navy);
	color: var(--white);
	padding: 7rem 0 4.5rem;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; margin: 0; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: 1rem; }

/* ---------- Page hero con foto (texto izquierda, foto derecha) ---------- */
.page-hero--split .page-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.page-hero--split .page-hero__text .eyebrow { margin-bottom: 1rem; }
.page-hero--split .page-hero__text h1 { margin-bottom: 0; }
.page-hero--split .page-hero__photo {
	border-radius: 20px;
	overflow: hidden;
	height: 360px;
}
.page-hero--split .page-hero__photo img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(35%) saturate(1.1) contrast(1.08) brightness(.85);
}
.page-hero--split .page-hero__photo--render {
	background: rgba(255,255,255,.04);
	display: flex; align-items: center; justify-content: center;
	padding: 1.5rem;
}
.page-hero--split .page-hero__photo--render img {
	width: auto; height: auto; max-width: 100%; max-height: 100%;
	object-fit: contain;
	filter: none;
}

@media (max-width: 880px) {
	.page-hero--split .page-hero__grid { grid-template-columns: 1fr; }
	.page-hero--split .page-hero__photo { order: -1; height: 240px; }
}

/* ---------- Mission / Vision / Pillars ---------- */
.mission-vision {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
}
.mission-vision__item { background: var(--white); padding: 2rem; border-radius: 14px; border: 1px solid var(--border-dark); }

.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.pillar h3 { color: var(--terracotta); }

@media (max-width: 780px) {
	.mission-vision, .pillars { grid-template-columns: 1fr; }
}

/* ---------- Cobertura ---------- */
.coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.75rem;
}
.coverage-region {
	background: var(--white);
	border: 1px solid var(--border-dark);
	border-radius: 16px;
	padding: 1.75rem;
	transition: border-color .25s ease, transform .25s ease;
}
.coverage-region:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.coverage-region__head {
	display: flex;
	align-items: center;
	gap: .6rem;
	margin-bottom: 1.1rem;
}
.coverage-region__head svg { color: var(--terracotta); flex-shrink: 0; }
.coverage-region__head h3 { margin: 0; flex-grow: 1; }
.coverage-region__count {
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 700;
	color: var(--gray);
	background: var(--offwhite);
	border-radius: 999px;
	padding: .3em .7em;
	white-space: nowrap;
}
.coverage-region__tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.coverage-tag {
	font-size: .82rem;
	color: var(--navy);
	background: var(--offwhite);
	border-radius: 999px;
	padding: .4em .9em;
}

/* ---------- Franja de foto + estadística ---------- */
.stat-photo { position: relative; overflow: hidden; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.stat-photo__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	filter: grayscale(40%) saturate(1.1) contrast(1.1) brightness(.6);
}
.stat-photo__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(218,103,66,.35), rgba(11,28,58,.55) 60%, rgba(11,28,58,.85));
}
.stat-photo .stat { position: relative; z-index: 1; color: var(--white); }
.stat-photo .stat__number { color: var(--white); }

/* ---------- Bases logísticas ---------- */
.bases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}
.bases-grid__item {
	display: flex;
	align-items: center;
	gap: .9rem;
	background: var(--white);
	border: 1px solid var(--border-dark);
	border-radius: 14px;
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	color: var(--navy);
}
.bases-grid__item svg { color: var(--terracotta); flex-shrink: 0; }

/* ---------- Contacto ---------- */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: .5rem; }
.contact-info__pills { display: flex; flex-direction: column; gap: .75rem; }
.contact-info__pill {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-weight: 700;
	color: var(--navy);
	background: var(--offwhite);
	border: 1px solid var(--border-dark);
	border-radius: 999px;
	padding: .75em 1.4em;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.contact-info__pill svg { color: var(--terracotta); flex-shrink: 0; transition: color .2s ease; }
.contact-info__pill:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.contact-info__pill:hover svg { color: var(--white); }
.contact-form form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 600; color: var(--navy); font-size: .9rem; }
.contact-form input,
.contact-form textarea {
	font-family: inherit;
	font-size: 1rem;
	padding: .75em 1em;
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	color: var(--gray);
}
.contact-form .btn { align-self: flex-start; border: none; }
.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.form-notice { padding: 1em; border-radius: 8px; margin-bottom: 1rem; font-weight: 600; }
.form-notice--ok { background: #e4f4e8; color: #1f6b3a; }
.form-notice--error { background: #fdeceb; color: var(--red); }

@media (max-width: 820px) {
	.contact-layout { grid-template-columns: 1fr; }
	.contact-info__pills { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
	background: linear-gradient(165deg, rgba(218,103,66,.65) 0%, var(--navy-deep) 65%);
	color: rgba(255,255,255,.75);
}

.site-footer__cta {
	padding: 5rem 0;
	text-align: center;
}
.site-footer__cta h2 { color: var(--white); margin-bottom: 1.75rem; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	padding: 5rem 0 4rem;
}
.site-footer__inner img { opacity: .95; }
.site-footer__tagline { max-width: 420px; font-size: .95rem; line-height: 1.6; margin: 0; }
.site-footer__social { display: flex; gap: 1.25rem; }
.site-footer__social a {
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	color: rgba(255,255,255,.7);
	display: flex; align-items: center; justify-content: center;
	transition: color .2s ease, border-color .2s ease;
}
.site-footer__social a:hover { color: var(--terracotta); border-color: var(--terracotta); }

.site-footer__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: .5rem;
}
.site-footer__contact-item {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	background: rgba(255,255,255,.06);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: .8em 1.6em;
	transition: background .2s ease, border-color .2s ease;
}
.site-footer__contact-item svg { color: var(--terracotta); flex-shrink: 0; }
.site-footer__contact-item:hover { background: var(--terracotta); border-color: var(--terracotta); }
.site-footer__contact-item:hover svg { color: var(--white); }

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 200;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

@media (max-width: 780px) {
	.whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

.site-footer__bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; font-size: .8rem; opacity: .5; }

@media (max-width: 780px) {
	.site-footer__cta { padding: 3.5rem 0; }
}
