/*
Theme Name: Hello Elementor Child - San Vicente
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
	--sv-light: #d1e563;
	--sv-dark: #00a13d;
	--sv-text: #1a1a1a;
	--sv-muted: #555;
	--sv-card-bg: #fff;
	--sv-card-border: #e3e3e3;
}

* { box-sizing: border-box; }

body, body *, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button, input, textarea, select {
	font-family: "Space Grotesk", system-ui, sans-serif !important;
}

.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands,
[class^="fa-"], [class*=" fa-"] {
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
.fa-brands, .fab { font-family: "Font Awesome 6 Brands" !important; }

body {
	margin: 0;
	color: var(--sv-text);
	background: #fff;
}

.sv-main {
	width: 95%;
	margin: 80px auto 0;
	padding: 0;
}

@media (max-width: 1024px) {
	.sv-main { width: 100%; }
}

a { color: inherit; }

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

.sv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- HEADER ---------- */
.sv-header {
	background: #fff;
	padding: 16px 0 0;
	border-bottom: none;
	width: 100%;
	margin: 0 auto;
	animation: sv-header-in .8s cubic-bezier(.22,.61,.36,1) both;
	position: sticky;
	top: 0;
	z-index: 9999;
	padding-left: 2.5%;
	padding-right: 2.5%;
	box-shadow: 0 2px 12px rgba(0,0,0,0);
	transition: box-shadow .3s ease, padding .3s ease;
}
.sv-header.is-stuck {
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.sv-header-top > * {
	animation: sv-header-fade .9s ease both;
}
.sv-header-top > *:nth-child(1) { animation-delay: .25s; }
.sv-header-top > *:nth-child(2) { animation-delay: .35s; }
.sv-header-top > *:nth-child(3) { animation-delay: .45s; }
.sv-nav { animation: sv-header-fade .8s ease .55s both; }

@keyframes sv-header-in {
	from { opacity: 0; transform: translateY(-30px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes sv-header-fade {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
	.sv-header { width: 100%; padding: 16px 16px 0; }
	.sv-logo { justify-content: flex-start !important; margin-left: 0; }
	.sv-logo .sv-logo-img { margin-left: 0; }
}
.sv-header-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}
.sv-social-left, .sv-icons-right {
	display: flex;
	gap: 18px;
	align-items: center;
}
.sv-icons-right { justify-content: flex-end; }
.sv-social-left a, .sv-icons-right a {
	color: #222;
	text-decoration: none;
	font-size: 25px;
	line-height: 1;
}
.sv-social-left a:hover, .sv-icons-right a:hover { color: var(--sv-dark); }

.sv-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
}
.sv-logo-img {
	max-height: 130px;
	width: auto;
	display: block;
}
.sv-footer .sv-logo-img {
	max-height: 110px;
	margin: 0 auto 30px;
}
.sv-logo-text {
	font-size: 26px;
	line-height: 1.1;
	font-weight: 400;
}
.sv-logo-text strong {
	display: block;
	font-weight: 700;
	color: #222;
}
.sv-logo-text em {
	display: block;
	font-style: normal;
	color: var(--sv-dark);
	font-weight: 600;
}

/* search overlay */
.sv-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.6);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 100001;
	padding-top: 18vh;
}
.sv-search-overlay[hidden] { display: none; }
.sv-search-form {
	background: #fff;
	border-radius: 8px;
	padding: 14px 16px;
	display: flex;
	gap: 10px;
	width: min(90%, 600px);
	box-shadow: 0 10px 40px rgba(0,0,0,.25);
	align-items: center;
}
.sv-search-form input[type="search"] {
	flex: 1;
	border: none;
	outline: none;
	font-size: 18px;
	padding: 8px 4px;
	background: transparent;
}
.sv-search-form button {
	background: var(--sv-dark);
	color: #fff;
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
}
.sv-search-form .sv-search-close {
	background: transparent;
	color: #333;
}

/* nav */
.sv-nav {
	margin-top: 18px;
}
.sv-nav ul {
	list-style: none;
	margin: 0;
	padding: 14px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 38px;
	justify-content: center;
}
.sv-nav a {
	color: #222;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	transition: color .2s;
}
.sv-nav a:hover { color: var(--sv-dark); }

/* ---------- HERO ---------- */
.sv-hero img {
	width: 100%;
	height: auto;
	display: block;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
}

/* ---------- ATENCIÓN BAND ---------- */
.sv-band {
	background: var(--sv-light);
	padding: 56px 24px;
	text-align: center;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.sv-band h2 {
	margin: 0 0 28px;
	font-size: 30px;
	font-weight: 600;
	color: #1a1a1a;
}
.sv-band p { margin: 0 0 8px; font-size: 16px; }
.sv-phone {
	font-family: "Courier New", monospace;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 4px;
}

/* ---------- CARDS ---------- */
.sv-cards {
	padding: 80px 24px;
}
.sv-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	max-width: 1400px;
	margin: 0 auto;
}
.sv-card {
	background: var(--sv-card-bg);
	border: 1px solid var(--sv-card-border);
	border-radius: 16px;
	padding: 44px 28px 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 380px;
}
.sv-card-icon {
	color: var(--sv-dark);
	margin-bottom: 24px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv-card-icon svg,
.sv-card-icon img {
	width: 72px;
	height: 72px;
	object-fit: contain;
}
.sv-card-icon img.sv-icon-zoom {
	width: 100px;
	height: 100px;
}
.sv-card h3 {
	margin: 0 0 20px;
	color: var(--sv-dark);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}
.sv-card p {
	font-size: 16px;
	line-height: 1.55;
	color: #333;
	margin: 0 0 26px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 120px;
}
.sv-card { text-decoration: none; color: inherit; }
.sv-triple-col { text-decoration: none; color: inherit; }
.sv-card .more, .sv-triple-col .more { cursor: pointer; }
.sv-card .more {
	color: var(--sv-dark);
	font-size: 17px;
	font-weight: 700;
	text-decoration: underline;
	position: relative;
	display: inline-block;
}
.sv-card .more span { transition: opacity .25s ease; }
.sv-card .more::after {
	content: attr(data-hover);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	transition: opacity .25s ease;
	white-space: nowrap;
	text-align: center;
}
.sv-card:hover a.more span { opacity: 0; }
.sv-card:hover a.more::after { opacity: 1; }

.sv-card {
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: border-color .5s ease, transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
	cursor: pointer;
}
.sv-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--sv-dark);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
	z-index: -1;
}
.sv-card:hover::before { transform: scaleY(1); }
.sv-card h3, .sv-card p, .sv-card .more, .sv-card-icon {
	transition: color .45s ease .05s;
	position: relative;
	z-index: 1;
}
.sv-card .sv-card-icon svg { transition: stroke .45s ease .05s; }
.sv-card .sv-card-icon img { transition: filter .45s ease .05s; }
.sv-card:hover {
	border-color: var(--sv-dark);
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,161,61,.25);
}
.sv-card:hover h3,
.sv-card:hover p,
.sv-card:hover a.more,
.sv-card:hover .sv-card-icon { color: #fff; }
.sv-card:hover .sv-card-icon svg { stroke: #fff; }
.sv-card:hover .sv-card-icon img { filter: brightness(0) invert(1); }

/* ---------- TRIPLE BLOCKS ---------- */
.sv-triple {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}
.sv-triple-col {
	background: var(--sv-light);
	padding: 32px 0 40px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.sv-triple-col p { flex: 1; }
.sv-triple-col {
	cursor: pointer;
	position: relative;
	z-index: 0;
	transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
}
.sv-triple-col::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #00a13d;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
	z-index: -1;
}
.sv-triple-col h3, .sv-triple-col p, .sv-triple-col .more {
	position: relative;
	z-index: 1;
}
.sv-triple-col h3,
.sv-triple-col p,
.sv-triple-col .more {
	padding-left: 28px;
	padding-right: 28px;
}
.sv-triple-col h3 {
	margin: 0 0 22px;
	font-size: 30px;
	font-weight: 400;
	color: #1a1a1a;
	text-align: center;
	word-spacing: 8px;
}
.sv-triple-col img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin-bottom: 22px;
	display: block;
}
.sv-triple-col p {
	font-size: 16px;
	line-height: 1.55;
	color: #1a1a1a;
	margin: 0 0 18px;
	text-align: center;
	font-weight: 600;
}
.sv-triple-col .more {
	display: block;
	text-align: center;
	color: #1a1a1a;
	font-size: 18px;
	font-weight: 700;
	text-decoration: underline;
	margin-top: 24px;
	position: relative;
}
.sv-triple-col .more span { transition: opacity .25s ease; display: inline-block; }
.sv-triple-col .more::after {
	content: attr(data-hover);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	transition: opacity .25s ease;
	white-space: nowrap;
	text-align: center;
}

/* ---------- CONTACT PAGE ---------- */
.sv-contact-hero {
	position: relative;
	background: linear-gradient(135deg, var(--sv-dark) 0%, #007a2d 100%);
	color: #fff;
	padding: 80px 56px;
	border-radius: 24px;
	margin-top: 40px;
	overflow: hidden;
}
.sv-contact-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.sv-contact-hero h1 {
	margin: 8px 0 18px;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.5px;
}
.sv-contact-hero p { font-size: 18px; line-height: 1.55; opacity: .92; max-width: 600px; margin: 0; }
.sv-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: var(--sv-light);
	color: #1a1a1a;
	padding: 6px 14px;
	border-radius: 999px;
}
.sv-contact-hero-mark {
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(209,229,99,.5), transparent 70%);
	pointer-events: none;
}

.sv-contact-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 32px;
	margin-top: 48px;
}

.sv-contact-info {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 36px 32px;
	align-self: start;
	position: sticky;
	top: 100px;
}
.sv-contact-info h3 {
	margin: 0 0 22px;
	font-size: 20px;
	color: var(--sv-dark);
	font-weight: 700;
}
.sv-info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.sv-info-list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.sv-info-ico {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--sv-light);
	color: var(--sv-dark);
	display: grid;
	place-items: center;
	font-size: 18px;
	flex-shrink: 0;
}
.sv-info-list strong {
	display: block;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #666;
	font-weight: 700;
	margin-bottom: 4px;
}
.sv-info-list a, .sv-info-list span {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.5;
}
.sv-info-list a:hover { color: var(--sv-dark); }

.sv-info-tip {
	display: flex;
	gap: 12px;
	padding: 16px;
	background: #f3fbe6;
	border: 1px dashed var(--sv-dark);
	border-radius: 12px;
	color: #1a1a1a;
}
.sv-info-tip i { color: var(--sv-dark); font-size: 18px; margin-top: 2px; }
.sv-info-tip p { margin: 0; font-size: 13px; line-height: 1.5; }

.sv-contact-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 44px 48px;
	box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.sv-contact-card-head { margin-bottom: 28px; }
.sv-contact-card-head h2 {
	margin: 0 0 6px;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
}
.sv-contact-card-head p { margin: 0; color: #666; font-size: 14px; }
.sv-contact-card-head .req { color: var(--sv-dark); font-weight: 700; }

.sv-form { display: flex; flex-direction: column; gap: 22px; }
.sv-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sv-field { display: flex; flex-direction: column; gap: 8px; }
.sv-label {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: .3px;
}
.sv-label em {
	color: var(--sv-dark);
	font-style: normal;
	margin-left: 2px;
}
.sv-form input, .sv-form select, .sv-form textarea {
	width: 100%;
	border: 1.5px solid #e3e3e3;
	background: #fafafa;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 15px;
	color: #1a1a1a;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
	outline: none;
}
.sv-form textarea { resize: vertical; min-height: 140px; font-family: inherit; }
.sv-form input:focus, .sv-form select:focus, .sv-form textarea:focus {
	border-color: var(--sv-dark);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0,161,61,.12);
}

.sv-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	cursor: pointer;
}
.sv-checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--sv-dark);
	flex-shrink: 0;
}
.sv-checkbox a { color: var(--sv-dark); text-decoration: underline; }

.sv-form-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.sv-form-actions small { color: #888; font-size: 13px; }

.sv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--sv-dark);
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: .3px;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
	line-height: 1;
}
.sv-btn i {
	font-size: 1em !important;
	line-height: 1;
	color: inherit;
	display: inline-block;
	vertical-align: middle;
}
.sv-btn span {
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}
.sv-btn:hover {
	background: var(--sv-light);
	color: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0,161,61,.3);
}
.sv-btn-ghost {
	background: transparent;
	color: var(--sv-dark);
	border: 2px solid var(--sv-dark);
}
.sv-btn-ghost:hover {
	background: var(--sv-dark);
	color: #fff;
}

.sv-faq {
	margin-top: 80px;
	padding: 56px 0;
}
.sv-faq h2 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 32px;
	color: #1a1a1a;
	text-align: center;
}
.sv-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.sv-faq details {
	background: #f7f9f3;
	border: 1px solid #e3e3e3;
	border-radius: 14px;
	padding: 20px 24px;
	transition: background .25s ease, border-color .25s ease;
}
.sv-faq details[open] {
	background: #fff;
	border-color: var(--sv-dark);
	box-shadow: 0 6px 24px rgba(0,0,0,.04);
}
.sv-faq summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 16px;
	color: #1a1a1a;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.sv-faq summary::-webkit-details-marker { display: none; }
.sv-faq summary::after {
	content: "+";
	color: var(--sv-dark);
	font-size: 24px;
	line-height: 1;
	font-weight: 400;
	transition: transform .25s ease;
}
.sv-faq details[open] summary::after { transform: rotate(45deg); }
.sv-faq details p {
	margin: 14px 0 0;
	color: #555;
	font-size: 14px;
	line-height: 1.55;
}

.sv-cta-back {
	text-align: center;
	margin: 40px 0 60px;
}

@media (max-width: 1024px) {
	.sv-contact-grid { grid-template-columns: 1fr; }
	.sv-contact-info { position: static; }
	.sv-faq-grid { grid-template-columns: 1fr; }
	.sv-contact-hero { padding: 56px 32px; }
	.sv-contact-hero h1 { font-size: 36px; }
	.sv-contact-card { padding: 32px 24px; }
	.sv-field-row { grid-template-columns: 1fr; }
}

/* ---------- SEARCH RESULTS ---------- */
.sv-search-results { padding: 56px 0; }
.sv-inline-search {
	display: flex;
	gap: 12px;
	margin-bottom: 36px;
	max-width: 700px;
}
.sv-inline-search input {
	flex: 1;
	border: 1.5px solid #e3e3e3;
	background: #fff;
	border-radius: 999px;
	padding: 14px 22px;
	font-size: 15px;
	outline: none;
}
.sv-inline-search input:focus {
	border-color: var(--sv-dark);
	box-shadow: 0 0 0 4px rgba(0,161,61,.12);
}
.sv-result-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}
.sv-result-link {
	display: block;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 24px 28px;
	color: inherit;
	text-decoration: none;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sv-result-link:hover {
	border-color: var(--sv-dark);
	box-shadow: 0 8px 24px rgba(0,161,61,.1);
	transform: translateY(-2px);
}
.sv-result-meta {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--sv-dark);
	font-weight: 700;
	margin-bottom: 6px;
}
.sv-result-link h3 {
	margin: 0 0 8px;
	font-size: 20px;
	color: #1a1a1a;
}
.sv-result-link p {
	margin: 0 0 12px;
	color: #555;
	font-size: 14px;
	line-height: 1.55;
}
.sv-result-cta {
	font-weight: 700;
	font-size: 14px;
	color: var(--sv-dark);
}
.sv-result-cta i { margin-left: 6px; transition: transform .25s; }
.sv-result-link:hover .sv-result-cta i { transform: translateX(4px); }
.sv-pagination {
	margin-top: 32px;
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}
.sv-pagination .page-numbers {
	padding: 10px 16px;
	border-radius: 8px;
	background: #f7f9f3;
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
}
.sv-pagination .page-numbers.current { background: var(--sv-dark); color: #fff; }
.sv-pagination a.page-numbers:hover { background: var(--sv-light); }

.sv-empty-state {
	text-align: center;
	padding: 60px 20px;
	background: #fafafa;
	border-radius: 16px;
}
.sv-empty-state i { font-size: 48px; color: #aaa; margin-bottom: 16px; }
.sv-empty-state h3 { margin: 0 0 8px; font-size: 22px; }
.sv-empty-state p { margin: 0 0 22px; color: #666; }

/* ---------- FOOTER ---------- */
.sv-footer {
	background: var(--sv-light);
	padding: 60px 24px 30px;
	text-align: center;
	margin-top: 60px;
}
.sv-footer .sv-logo-mark {
	margin: 0 auto 30px;
	width: 80px;
	height: 80px;
}
.sv-footer-nav {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sv-footer-nav a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.sv-footer-social {
	display: flex;
	justify-content: center;
	gap: 22px;
	margin-bottom: 28px;
}
.sv-footer-social a { color: #1a1a1a; font-size: 18px; text-decoration: none; }
.sv-footer-legal {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
}
.sv-footer-legal a {
	font-size: 13px;
	color: #1a1a1a;
	text-decoration: none;
	transition: color .2s;
}
.sv-footer-legal a:hover { color: var(--sv-dark); }
.sv-footer-legal li + li {
	position: relative;
}
.sv-footer-legal li + li::before {
	content: "·";
	position: absolute;
	left: -14px;
	color: #999;
}
@media (max-width: 600px) {
	.sv-footer-legal { gap: 6px 14px; }
	.sv-footer-legal li + li::before { left: -10px; }
}
.sv-footer-copy {
	font-size: 11px;
	color: #1a1a1a;
	line-height: 1.6;
}

/* ---------- HAMBURGER ---------- */
.sv-burger {
	display: none !important;
	background: transparent !important;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	color: #222;
	font-size: 56px;
	padding: 0;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
}
.sv-burger:hover, .sv-burger:focus, .sv-burger:active { color: var(--sv-dark); }
.sv-burger i { font-size: 36px !important; line-height: 1; }
@media (max-width: 640px) {
	.sv-burger i { font-size: 30px !important; }
}

.sv-mobile-nav {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0);
	z-index: 100000;
	display: flex;
	justify-content: flex-end;
	transition: background .3s ease;
}
.sv-mobile-nav[hidden] { display: none; }
.sv-mobile-nav.is-open { background: rgba(0,0,0,.55); }
.sv-mobile-nav .sv-mobile-close {
	position: absolute;
	top: 18px;
	right: 22px;
	background: transparent;
	border: none;
	font-size: 28px;
	color: #222;
	cursor: pointer;
	z-index: 2;
}
.sv-mobile-panel {
	background: #fff;
	width: min(85%, 340px);
	height: 100%;
	padding: 80px 28px 32px;
	overflow-y: auto;
	box-shadow: -10px 0 30px rgba(0,0,0,.2);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.sv-mobile-nav.is-open .sv-mobile-panel { transform: translateX(0); }
.sv-mobile-panel > * {
	opacity: 0;
	transform: translateX(20px);
	transition: opacity .35s ease .15s, transform .35s ease .15s;
}
.sv-mobile-nav.is-open .sv-mobile-panel > * {
	opacity: 1;
	transform: translateX(0);
}
.sv-mobile-nav.is-open .sv-mobile-menu li {
	animation: sv-slide-in .4s ease both;
}
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(1) { animation-delay: .15s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(2) { animation-delay: .20s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(3) { animation-delay: .25s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(4) { animation-delay: .30s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(5) { animation-delay: .35s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(6) { animation-delay: .40s; }
.sv-mobile-nav.is-open .sv-mobile-menu li:nth-child(7) { animation-delay: .45s; }

@keyframes sv-slide-in {
	from { opacity: 0; transform: translateX(30px); }
	to   { opacity: 1; transform: translateX(0); }
}

@media (hover: none), (pointer: coarse) {
	.sv-card, .sv-triple-col { cursor: default; }
	.sv-card::before, .sv-triple-col::before {
		content: none !important;
		transform: none !important;
		background: transparent !important;
	}
	.sv-card:hover h3, .sv-card:hover p, .sv-card:hover a.more,
	.sv-card:hover .sv-card-icon,
	.sv-triple-col:hover h3, .sv-triple-col:hover p, .sv-triple-col:hover a.more {
		color: inherit !important;
	}
	.sv-card:hover .sv-card-icon svg { stroke: var(--sv-dark) !important; }
	.sv-card:hover .sv-card-icon img { filter: none !important; }
	.sv-card:hover, .sv-triple-col:hover {
		transform: none !important;
		box-shadow: none !important;
		border-color: var(--sv-card-border) !important;
	}
	.sv-card:hover a.more span,
	.sv-triple-col:hover a.more span { opacity: 1 !important; }
	.sv-card:hover a.more::after,
	.sv-triple-col:hover a.more::after { opacity: 0 !important; }
}

/* ---------- SCROLL REVEAL ---------- */
.sv-fade {
	opacity: 0;
	transition: opacity 1s ease;
	will-change: opacity;
}
.sv-fade.is-visible { opacity: 1; }

.sv-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .7s ease, transform .7s ease;
	will-change: opacity, transform;
}
.sv-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.sv-reveal-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .6s ease, transform .6s ease;
}
.sv-reveal-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}
.sv-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.sv-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.sv-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.sv-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
.sv-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
.sv-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.sv-reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .47s; }
.sv-reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .54s; }
.sv-mobile-nav .sv-mobile-menu {
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.sv-mobile-actions, .sv-mobile-social {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-size: 22px;
	margin-top: auto;
	padding-top: 18px;
}
.sv-mobile-actions { border-top: 1px solid #eee; }
.sv-mobile-social { margin-top: 16px; padding-top: 16px; border-top: 1px solid #eee; }
.sv-mobile-actions a, .sv-mobile-social a {
	color: #222;
	text-decoration: none;
}
.sv-mobile-actions a:hover, .sv-mobile-social a:hover { color: var(--sv-dark); }
.sv-mobile-menu a {
	color: #222;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.sv-mobile-menu a:hover { color: var(--sv-dark); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
	.sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
	.sv-triple { grid-template-columns: 1fr; }
	.sv-nav { display: none; }
	.sv-social-left { display: none; }
	.sv-icons-right > a { display: none; }
	.sv-icons-right { justify-content: flex-end; }
	.sv-burger { display: inline-flex !important; align-items: center; }
	.sv-header-top { grid-template-columns: 1fr auto; }
	.sv-logo { justify-content: flex-start; }
}
@media (max-width: 640px) {
	.sv-social-left { gap: 12px; }
	.sv-icons-right { gap: 12px; }
	.sv-cards-grid { grid-template-columns: 1fr; }
	.sv-band h2 { font-size: 22px; }
	.sv-phone { font-size: 26px; letter-spacing: 2px; }
	.sv-social-left a, .sv-icons-right a { font-size: 18px; }
	.sv-burger { font-size: 44px; }
}

/* ---------- PAGE WITH SIDEBAR ---------- */
.sv-page {
	max-width: 1280px;
	margin: 60px auto 0;
	padding: 40px 24px 80px;
	animation: sv-page-fade .7s ease-out both;
}
.sv-page .sv-page-content {
	animation: sv-page-fade-up .8s .05s ease-out both;
}
.sv-page .sv-sidebar {
	animation: sv-page-fade-up .8s .18s ease-out both;
}
@keyframes sv-page-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes sv-page-fade-up {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.sv-page,
	.sv-page .sv-page-content,
	.sv-page .sv-sidebar {
		animation: none !important;
	}
}
.sv-page-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: start;
}
.sv-page-with-sidebar .sv-page-grid {
	grid-template-columns: minmax(0, 1fr) 280px;
}
.sv-page-content {
	min-width: 0;
}
.sv-page-title {
	color: var(--sv-dark);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 1px;
	margin: 0 0 28px;
	text-transform: uppercase;
}
.sv-page-content .sv-section {
	margin-bottom: 32px;
}
.sv-page-content h2 {
	font-size: 17px;
	font-weight: 700;
	color: var(--sv-text);
	margin: 0 0 14px;
}
.sv-page-content p {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0 0 14px;
	text-align: justify;
}
.sv-page-content ul {
	margin: 0 0 16px 18px;
	padding: 0;
}
.sv-page-content ul li {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 8px;
}
.sv-page-content ul li strong {
	color: var(--sv-text);
}
.sv-link-highlight {
	color: var(--sv-dark);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .2s;
}
.sv-link-highlight:hover {
	border-bottom-color: var(--sv-dark);
}

/* ---------- SIDEBAR ---------- */
.sv-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.sv-sidebar-title {
	font-style: italic;
	font-weight: 500;
	font-size: 17px;
	color: var(--sv-text);
	margin: 8px 0 6px;
	text-align: center;
}
.sv-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sv-sidebar-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid var(--sv-card-border);
	border-radius: 10px;
	text-decoration: none;
	color: var(--sv-text);
	transition: border-color .2s, transform .15s, box-shadow .2s;
}
.sv-sidebar-list a:hover {
	border-color: var(--sv-dark);
	box-shadow: 0 4px 14px rgba(0, 161, 61, 0.12);
	transform: translateX(2px);
}
.sv-sidebar-ico {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv-sidebar-ico img {
	max-width: 44px;
	max-height: 44px;
	width: auto;
	height: auto;
}
.sv-sidebar-ico i {
	font-size: 26px;
	color: var(--sv-dark);
}
.sv-sidebar-label {
	font-style: italic;
	font-size: 14px;
	line-height: 1.25;
	color: var(--sv-text);
}
.sv-sidebar-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: var(--sv-dark);
	margin-top: 6px;
}
.sv-sidebar-block img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--sv-card-border);
}
.sv-sidebar-block span {
	font-style: italic;
	font-size: 14px;
	color: var(--sv-dark);
}
.sv-sidebar-block:hover span {
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.sv-page-with-sidebar .sv-page-grid {
		grid-template-columns: 1fr;
	}
	.sv-sidebar {
		position: static;
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}
}
@media (max-width: 600px) {
	.sv-page {
		padding: 24px 16px 60px;
	}
	.sv-page-grid {
		gap: 32px;
	}
}

/* ---------- CONTACT FORM (page-ejemplo) ---------- */
.sv-contact-intro p {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0 0 12px;
}
.sv-contact-intro {
	margin-bottom: 28px;
}

.sv-alert {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 12px;
	margin-bottom: 24px;
	border: 1px solid;
}
.sv-alert i { font-size: 22px; line-height: 1.2; margin-top: 2px; }
.sv-alert strong { display: block; font-size: 15px; margin-bottom: 2px; }
.sv-alert span { font-size: 14px; line-height: 1.5; }
.sv-alert-ok {
	background: #f1faea;
	border-color: var(--sv-light);
	color: #1a4d1a;
}
.sv-alert-ok i { color: var(--sv-dark); }
.sv-alert-err {
	background: #fdecec;
	border-color: #f5b5b5;
	color: #8a1f1f;
}
.sv-alert-err i { color: #c0392b; }

.sv-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--sv-card-border);
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
	position: relative;
}
.sv-cf-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sv-cf-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--sv-text);
	letter-spacing: .3px;
}
.sv-cf-label em {
	color: var(--sv-dark);
	font-style: normal;
	font-weight: 700;
}
.sv-contact-form input[type="text"],
.sv-contact-form input[type="tel"],
.sv-contact-form input[type="email"],
.sv-contact-form textarea {
	font-family: inherit;
	font-size: 15px;
	padding: 13px 16px;
	border: 1.5px solid #e3e3e3;
	border-radius: 12px;
	background: #fafafa;
	color: var(--sv-text);
	transition: border-color .2s, background .2s, box-shadow .2s;
	width: 100%;
}
.sv-contact-form input:focus,
.sv-contact-form textarea:focus {
	border-color: var(--sv-dark);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 161, 61, 0.12);
	outline: none;
}
.sv-contact-form textarea {
	resize: vertical;
	min-height: 150px;
	line-height: 1.5;
}
.sv-cf-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
	cursor: pointer;
}
.sv-cf-check input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--sv-dark);
	flex-shrink: 0;
	cursor: pointer;
}
.sv-cf-check a {
	color: var(--sv-dark);
	font-weight: 600;
	text-decoration: none;
}
.sv-cf-check a:hover { text-decoration: underline; }

.sv-cf-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 6px;
}
.sv-cf-btn,
.sv-cf-btn:hover,
.sv-cf-btn:focus,
.sv-cf-btn:active,
.sv-cf-btn:visited {
	color: #fff !important;
	border: 0 !important;
	outline: none !important;
	text-decoration: none !important;
}
.sv-cf-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--sv-dark) 0%, #00873a 100%);
	border-radius: 999px;
	padding: 14px 30px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 161, 61, 0.3);
	transition: transform .15s, box-shadow .2s, filter .2s;
	-webkit-appearance: none;
	appearance: none;
}
.sv-cf-btn:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(0, 161, 61, 0.4);
}
.sv-cf-btn:active { transform: translateY(0); }
.sv-cf-btn i { font-size: 12px; color: #fff !important; }
.sv-cf-btn span { color: #fff !important; }
.sv-cf-actions small {
	font-size: 12px;
	color: #888;
}

@media (max-width: 768px) {
	.sv-contact-form { padding: 22px 18px; }
	.sv-cf-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.sv-cf-btn {
		display: flex !important;
		width: 100% !important;
		justify-content: center !important;
		padding: 16px 24px !important;
	}
	.sv-cf-actions small {
		width: 100%;
		text-align: center;
	}
}

/* ---------- POLÍTICA DE PRIVACIDAD ---------- */
.sv-pp-h2 {
	font-size: 16px;
	font-weight: 700;
	color: var(--sv-text);
	margin: 30px 0 16px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.sv-pp-h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--sv-text);
	margin: 26px 0 12px;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.sv-pp-h4 {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--sv-dark);
	margin: 18px 0 8px;
}
.sv-pp-list {
	margin: 0 0 16px 18px;
	padding: 0;
}
.sv-pp-list li {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 6px;
}
.sv-pp-list a, .sv-page-content a {
	color: var(--sv-dark);
	text-decoration: none;
	font-weight: 600;
}
.sv-pp-list a:hover, .sv-page-content a:hover {
	text-decoration: underline;
}

.sv-pp-table {
	border: 1px solid var(--sv-card-border);
	border-radius: 6px;
	overflow: hidden;
	margin: 0 0 30px;
	background: #fff;
}
.sv-pp-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid var(--sv-card-border);
}
.sv-pp-row:last-child { border-bottom: 0; }
.sv-pp-cell {
	padding: 18px 20px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--sv-text);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-right: 1px solid var(--sv-card-border);
}
.sv-pp-cell:last-child { border-right: 0; }
.sv-pp-label {
	font-weight: 700;
	color: var(--sv-text);
}
.sv-pp-row-head .sv-pp-cell {
	background: #fafafa;
}

/* ---------- CONSEJOS CIUDAD LIMPIA ---------- */
.sv-tip-quote {
	display: flex;
	gap: 14px;
	background: linear-gradient(135deg, #f1faea 0%, #e8f5d5 100%);
	border-left: 4px solid var(--sv-dark);
	border-radius: 12px;
	padding: 18px 22px;
	margin: 20px 0;
}
.sv-tip-quote i {
	color: var(--sv-dark);
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}
.sv-tip-quote p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	font-style: italic;
	color: var(--sv-text);
	font-weight: 500;
}

.sv-tips-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin: 24px 0;
}
.sv-tip-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--sv-card-border);
	border-radius: 16px;
	padding: 28px 24px 22px;
	transition: transform .2s, box-shadow .25s, border-color .2s;
}
.sv-tip-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--sv-dark);
}
.sv-tip-num {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 38px;
	font-weight: 800;
	color: var(--sv-light);
	line-height: 1;
	letter-spacing: -1px;
}
.sv-tip-ico {
	display: inline-flex;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sv-light) 0%, var(--sv-dark) 100%);
	color: #fff;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 14px;
	box-shadow: 0 4px 12px rgba(0, 161, 61, 0.25);
}
.sv-tip-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--sv-text);
	line-height: 1.3;
	padding-right: 40px;
}
.sv-tip-card p {
	font-size: 14px;
	line-height: 1.65;
	color: #444;
	margin: 0;
}
.sv-tip-card p strong {
	color: var(--sv-dark);
}
@media (max-width: 768px) {
	.sv-tips-grid { grid-template-columns: 1fr; }
	.sv-tip-num { font-size: 32px; top: 12px; right: 14px; }
}

/* ---------- TIPOS DE CONTENEDORES ---------- */
.sv-cont-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin: 24px 0 32px;
}
.sv-cont-card {
	background: #fff;
	border: 1px solid var(--sv-card-border);
	border-radius: 14px;
	padding: 20px 22px;
	transition: transform .2s, box-shadow .25s, border-color .2s;
}
.sv-cont-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	border-color: var(--sv-dark);
}
.sv-cont-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.sv-cont-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--cont-c);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sv-cont-name {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	color: var(--sv-text);
	line-height: 1.2;
}
.sv-cont-sub {
	font-size: 13px;
	color: #666;
	font-style: italic;
}
.sv-cont-desc {
	font-size: 14px;
	line-height: 1.65;
	color: #333;
	margin: 0;
}
.sv-cont-locations {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 18px;
}
.sv-cont-locations li {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	padding: 6px 0;
	border-bottom: 1px dashed #ececec;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.sv-cont-locations li i {
	color: var(--sv-dark);
	font-size: 13px;
	margin-top: 4px;
	flex-shrink: 0;
}
.sv-cont-note {
	display: flex;
	gap: 14px;
	background: #f1faea;
	border: 1px solid var(--sv-light);
	border-radius: 12px;
	padding: 16px 18px;
	margin-top: 16px;
}
.sv-cont-note i {
	color: var(--sv-dark);
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}
.sv-cont-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #1a4d1a;
}
.sv-cont-note code {
	background: #fff;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 13px;
	color: var(--sv-dark);
}
.sv-cont-note-warn {
	background: #fffaec;
	border-color: #f0d97a;
}
.sv-cont-note-warn i { color: #b88207; }
.sv-cont-note-warn p { color: #5a4708; }

.sv-map-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--sv-text);
	margin: 28px 0 10px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--sv-light);
}
.sv-map-label i { color: var(--sv-dark); font-size: 16px; }

.sv-extmap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 16px 0 24px;
}
.sv-extmap-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--sv-card-border);
	border-radius: 14px;
	text-decoration: none;
	color: var(--sv-text);
	transition: transform .2s, box-shadow .25s, border-color .2s;
}
.sv-extmap-card:hover {
	transform: translateY(-2px);
	border-color: var(--sv-dark);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.sv-extmap-ico {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--ec);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sv-extmap-body {
	flex: 1;
	min-width: 0;
}
.sv-extmap-body strong {
	display: block;
	font-size: 15px;
	margin-bottom: 4px;
	color: var(--sv-text);
}
.sv-extmap-body span {
	font-size: 13px;
	line-height: 1.45;
	color: #666;
}
.sv-extmap-go {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--sv-dark);
	white-space: nowrap;
	flex-shrink: 0;
}
.sv-extmap-go i { font-size: 11px; }
@media (max-width: 768px) {
	.sv-extmap-grid { grid-template-columns: 1fr; }
	.sv-extmap-go { display: none; }
	.sv-extmap-card { padding: 14px 16px; }
}

.sv-map-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 0;
}
.sv-map-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1.5px solid var(--sv-card-border);
	border-radius: 999px;
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--sv-text);
	cursor: pointer;
	transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.sv-map-tab i { font-size: 13px; color: var(--sv-dark); transition: color .2s; }
.sv-map-tab:hover {
	border-color: var(--sv-dark);
	transform: translateY(-1px);
}
.sv-map-tab.is-active {
	background: linear-gradient(135deg, var(--sv-dark) 0%, #00873a 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 161, 61, 0.3);
}
.sv-map-tab.is-active i { color: #fff; }

.sv-map-wrap {
	position: relative;
	width: 100%;
	height: 600px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--sv-card-border);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	margin: 24px 0;
	background: #f4f4f4;
}
.sv-map-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
@media (max-width: 768px) {
	.sv-map-wrap { height: 480px; }
}
@media (max-width: 480px) {
	.sv-map-wrap { height: 380px; border-radius: 10px; }
}
@media (max-width: 768px) {
	.sv-cont-grid, .sv-cont-locations { grid-template-columns: 1fr; }
}

/* ---------- ECOPARQUE GALLERY ---------- */
.sv-ecop-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 24px 0 0;
}
.sv-ecop-thumb {
	display: block;
	padding: 0;
	border: 1px solid var(--sv-card-border);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	cursor: zoom-in;
	transition: transform .2s, box-shadow .25s, border-color .2s;
	width: 100%;
	font: inherit;
}
.sv-ecop-thumb:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	border-color: var(--sv-dark);
}
.sv-ecop-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 1 / 1;
}
@media (max-width: 768px) {
	.sv-ecop-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
	.sv-ecop-gallery { grid-template-columns: 1fr; }
}

/* ---------- LIGHTBOX ---------- */
.sv-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 20, 14, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	transition: opacity .25s ease;
	padding: 40px 60px;
}
.sv-lightbox.is-open { opacity: 1; }
.sv-lightbox-inner {
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv-lightbox-inner img {
	max-width: 100%;
	max-height: 88vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	display: block;
}
.sv-lightbox button {
	position: absolute;
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: background .2s, transform .15s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv-lightbox button:hover {
	background: var(--sv-dark);
	border-color: var(--sv-dark);
	transform: scale(1.06);
}
.sv-lightbox-close { top: 20px; right: 20px; }
.sv-lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.sv-lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.sv-lightbox-prev:hover, .sv-lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 600px) {
	.sv-lightbox { padding: 20px 12px; }
	.sv-lightbox button { width: 42px; height: 42px; font-size: 16px; }
	.sv-lightbox-prev { left: 8px; }
	.sv-lightbox-next { right: 8px; }
	.sv-lightbox-close { top: 12px; right: 12px; }
}

/* ---------- EN CONSTRUCCIÓN ---------- */
.sv-wip-main { padding: 0 !important; }
.sv-wip {
	position: relative;
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 24px;
	overflow: hidden;
	background: linear-gradient(180deg, #f9fdf5 0%, #ffffff 100%);
}
.sv-wip-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.sv-wip-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(110px);
	opacity: .35;
}
.sv-wip-blob-1 {
	width: 460px; height: 460px;
	background: #d1e563;
	top: -120px; left: -120px;
	animation: sv-wip-float 14s ease-in-out infinite;
}
.sv-wip-blob-2 {
	width: 520px; height: 520px;
	background: #00a13d;
	bottom: -180px; right: -160px;
	opacity: .22;
	animation: sv-wip-float 18s ease-in-out infinite reverse;
}
@keyframes sv-wip-float {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(40px, 30px); }
}
.sv-wip-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	text-align: center;
	animation: sv-wip-in .8s ease-out both;
}
@keyframes sv-wip-in {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
.sv-wip-art {
	width: 180px;
	height: 180px;
	margin: 0 auto 24px;
}
.sv-wip-art svg { width: 100%; height: 100%; display: block; }
.sv-wip-gear {
	transform-origin: 100px 100px;
	animation: sv-wip-rotate 10s linear infinite;
}
@keyframes sv-wip-rotate {
	from { transform: rotate(0); }
	to   { transform: rotate(360deg); }
}
.sv-wip-ring {
	transform-origin: 100px 100px;
	animation: sv-wip-rotate-rev 24s linear infinite;
}
@keyframes sv-wip-rotate-rev {
	from { transform: rotate(0); }
	to   { transform: rotate(-360deg); }
}
.sv-wip-spark circle {
	animation: sv-wip-twinkle 3s ease-in-out infinite;
}
.sv-wip-spark circle:nth-child(2) { animation-delay: .6s; }
.sv-wip-spark circle:nth-child(3) { animation-delay: 1.2s; }
.sv-wip-spark circle:nth-child(4) { animation-delay: 1.8s; }
@keyframes sv-wip-twinkle {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .3; transform: scale(.6); }
}

.sv-wip-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1.5px solid var(--sv-light);
	color: var(--sv-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
	box-shadow: 0 4px 14px rgba(0, 161, 61, 0.08);
}
.sv-wip-title {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--sv-text);
	margin: 0 0 16px;
}
.sv-wip-title span {
	color: var(--sv-dark);
	font-weight: 600;
	font-size: 28px;
}
.sv-wip-text {
	font-size: 16px;
	line-height: 1.65;
	color: #555;
	max-width: 520px;
	margin: 0 auto 30px;
}
.sv-wip-progress {
	width: 240px;
	max-width: 100%;
	height: 6px;
	border-radius: 999px;
	background: #ececec;
	overflow: hidden;
	margin: 0 auto 32px;
}
.sv-wip-progress-bar {
	display: block;
	height: 100%;
	width: 40%;
	background: linear-gradient(90deg, var(--sv-light), var(--sv-dark));
	border-radius: inherit;
	animation: sv-wip-progress 2.4s ease-in-out infinite;
}
@keyframes sv-wip-progress {
	0%   { transform: translateX(-110%); width: 40%; }
	50%  { width: 60%; }
	100% { transform: translateX(260%); width: 40%; }
}
.sv-wip-actions {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.sv-wip-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	text-decoration: none;
	transition: transform .15s, box-shadow .2s, background .2s, color .2s;
	border: 1.5px solid transparent;
}
.sv-wip-btn-primary {
	background: linear-gradient(135deg, var(--sv-dark) 0%, #00873a 100%);
	color: #fff !important;
	box-shadow: 0 6px 18px rgba(0, 161, 61, 0.3);
}
.sv-wip-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(0, 161, 61, 0.4);
	filter: brightness(1.05);
}
.sv-wip-btn-ghost {
	background: #fff;
	color: var(--sv-dark) !important;
	border-color: var(--sv-light);
}
.sv-wip-btn-ghost:hover {
	background: var(--sv-light);
	color: var(--sv-text) !important;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.sv-wip { padding: 50px 18px; min-height: 70vh; }
	.sv-wip-art { width: 140px; height: 140px; }
	.sv-wip-title { font-size: 28px; }
	.sv-wip-title span { font-size: 22px; }
	.sv-wip-text { font-size: 15px; }
	.sv-wip-actions { width: 100%; flex-direction: column; }
	.sv-wip-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
	.sv-pp-row { grid-template-columns: 1fr; }
	.sv-pp-cell {
		border-right: 0;
		border-bottom: 1px solid #f0f0f0;
		text-align: left;
		justify-content: flex-start;
	}
	.sv-pp-row .sv-pp-cell:last-child { border-bottom: 0; }
}
