/* ============================================================
   SECCIONES — Rediseño completo v2
   ============================================================ */

/* ============================================================
   TURISMO
   ============================================================ */
.turismo-section {
	position: relative;
	padding: 100px 0;
	background: #06122a;
	overflow: hidden;
}

/* Orbes de fondo */
.turismo-section::before,
.turismo-section::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
}
.turismo-section::before {
	width: 500px; height: 500px;
	background: rgba(26,90,180,.2);
	top: -100px; right: -80px;
}
.turismo-section::after {
	width: 300px; height: 300px;
	background: rgba(232,160,32,.1);
	bottom: -60px; left: 10%;
}

/* Grid pattern */
.turismo-section .container { position: relative; z-index: 1; }

.turismo-section .section-title { color: #fff; }
.turismo-section .section-subtitle { color: rgba(255,255,255,.55); }
.turismo-section .section-label {
	background: rgba(232,160,32,.15);
	color: var(--color-acento);
}

/* Cards turismo */
.turismo-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}

.turismo-card {
	position: relative;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.turismo-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	border-radius: 20px 20px 0 0;
	transition: opacity .3s;
}
.turismo-card--agencia::before   { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.turismo-card--hotel::before     { background: linear-gradient(90deg, #f59e0b, #e8a020); }
.turismo-card--restaurante::before { background: linear-gradient(90deg, #34d399, #10b981); }

.turismo-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255,255,255,.16);
}
.turismo-card--agencia:hover    { box-shadow: 0 20px 60px rgba(56,189,248,.15); }
.turismo-card--hotel:hover      { box-shadow: 0 20px 60px rgba(245,158,11,.12); }
.turismo-card--restaurante:hover{ box-shadow: 0 20px 60px rgba(52,211,153,.12); }

/* Icon area */
.turismo-card-img {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
}
.turismo-card--agencia .turismo-card-img    { background: linear-gradient(135deg,rgba(56,189,248,.15),rgba(14,165,233,.08)); }
.turismo-card--hotel .turismo-card-img      { background: linear-gradient(135deg,rgba(245,158,11,.15),rgba(232,160,32,.08)); }
.turismo-card--restaurante .turismo-card-img{ background: linear-gradient(135deg,rgba(52,211,153,.15),rgba(16,185,129,.08)); }

/* Glow del icono */
.turismo-card-icon {
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 12px rgba(255,255,255,.2));
}

/* Cuerpo de la card */
.turismo-card-body {
	padding: 28px 28px 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.turismo-tag {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 12px;
}
.turismo-card--agencia .turismo-tag    { color: #38bdf8; }
.turismo-card--hotel .turismo-tag      { color: #f59e0b; }
.turismo-card--restaurante .turismo-tag{ color: #34d399; }

.turismo-card-body h3 {
	font-size: 1.1rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.4;
}
.turismo-card-body p {
	font-size: .9rem;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
	margin-bottom: 20px;
}

.turismo-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	flex: 1;
}
.turismo-features li {
	font-size: .84rem;
	color: rgba(255,255,255,.65);
	padding: 7px 0 7px 22px;
	border-bottom: 1px solid rgba(255,255,255,.06);
	position: relative;
}
.turismo-card--agencia .turismo-features li::before    { content: '✓'; position: absolute; left: 0; color: #38bdf8; font-weight: 700; }
.turismo-card--hotel .turismo-features li::before      { content: '✓'; position: absolute; left: 0; color: #f59e0b; font-weight: 700; }
.turismo-card--restaurante .turismo-features li::before{ content: '✓'; position: absolute; left: 0; color: #34d399; font-weight: 700; }

.turismo-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 10px;
	margin-top: auto;
	transition: background .2s, transform .2s;
}
.turismo-card--agencia .turismo-cta    { background: rgba(56,189,248,.12);  color: #38bdf8; }
.turismo-card--hotel .turismo-cta      { background: rgba(245,158,11,.12);  color: #f59e0b; }
.turismo-card--restaurante .turismo-cta{ background: rgba(52,211,153,.12);  color: #34d399; }
.turismo-cta:hover { transform: translateX(4px); }


/* ============================================================
   OTROS SECTORES
   ============================================================ */
.otros-section {
	padding: 100px 0;
	background: #fff;
}

.otros-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

.otro-card {
	padding: 32px 28px;
	border-radius: 18px;
	border: 1.5px solid #eef0f8;
	background: #fff;
	transition: transform .25s, box-shadow .25s, border-color .25s;
	display: flex;
	flex-direction: column;
}
.otro-card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: 0 12px 40px rgba(26,58,107,.1);
}

.otro-icon-wrap {
	width: 52px; height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 18px;
	flex-shrink: 0;
}

/* Colores por card — agregados via PHP override o CSS :nth-child */
.otro-card:nth-child(1) .otro-icon-wrap { background: #fef3e8; }
.otro-card:nth-child(2) .otro-icon-wrap { background: #f0f9ff; }
.otro-card:nth-child(3) .otro-icon-wrap { background: #f0fdf4; }
.otro-card:nth-child(4) .otro-icon-wrap { background: #fdf4ff; }
.otro-card:nth-child(5) .otro-icon-wrap { background: #fff7ed; }
.otro-card:nth-child(6) .otro-icon-wrap { background: #f0f4ff; }

.otro-icon {
	display: block;
	font-size: 1.5rem;
	width: 52px; height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 14px;
	margin-bottom: 18px;
}
.otro-card:nth-child(1) .otro-icon { background: #fef3e8; }
.otro-card:nth-child(2) .otro-icon { background: #f0f9ff; }
.otro-card:nth-child(3) .otro-icon { background: #f0fdf4; }
.otro-card:nth-child(4) .otro-icon { background: #fdf4ff; }
.otro-card:nth-child(5) .otro-icon { background: #fff7ed; }
.otro-card:nth-child(6) .otro-icon { background: #f0f4ff; }

.otro-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #0f1f3d;
	margin-bottom: 10px;
}
.otro-card p {
	font-size: .87rem;
	color: #6b7280;
	line-height: 1.65;
	margin-bottom: 20px;
	flex: 1;
}
.otro-link {
	font-size: .85rem;
	font-weight: 700;
	color: var(--color-primario);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s, color .2s;
	margin-top: auto;
}
.otro-link:hover { gap: 8px; color: var(--color-acento); }


/* ============================================================
   POR QUÉ ELEGIRNOS
   ============================================================ */
.porque-section {
	position: relative;
	padding: 100px 0;
	background: linear-gradient(135deg, #0b1f45 0%, #0d2858 100%);
	overflow: hidden;
}
.porque-section::before {
	content: '';
	position: absolute;
	width: 600px; height: 600px;
	background: rgba(26,90,180,.25);
	border-radius: 50%;
	filter: blur(120px);
	top: -200px; right: -100px;
	pointer-events: none;
}

.porque-section .container { position: relative; z-index: 1; }
.porque-section .section-title { color: #fff; }
.porque-section .section-label {
	background: rgba(232,160,32,.15);
	color: var(--color-acento);
}

.porque-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 24px;
	margin-top: 0;
}

.porque-item {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 20px;
	padding: 36px 28px;
	position: relative;
	overflow: hidden;
	transition: border-color .3s, background .3s;
}
.porque-item:hover {
	background: rgba(255,255,255,.07);
	border-color: rgba(232,160,32,.3);
}

/* Número gigante decorativo detrás */
.porque-numero {
	display: block;
	font-size: 5rem;
	font-weight: 900;
	color: rgba(255,255,255,.05);
	line-height: 1;
	margin-bottom: 0;
	position: absolute;
	top: 12px; right: 16px;
	pointer-events: none;
	letter-spacing: -.04em;
}

/* Número pequeño visible */
.porque-item::before {
	content: attr(data-num);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	background: rgba(232,160,32,.15);
	border: 1px solid rgba(232,160,32,.3);
	border-radius: 10px;
	font-size: .78rem;
	font-weight: 800;
	color: var(--color-acento);
	margin-bottom: 20px;
}

.porque-item h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
	line-height: 1.35;
}
.porque-item p {
	font-size: .88rem;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
}


/* ============================================================
   CONTACTO
   ============================================================ */
.contacto-section {
	padding: 100px 0;
	background: #f5f7ff;
	position: relative;
	overflow: hidden;
}
.contacto-section::before {
	content: '';
	position: absolute;
	width: 400px; height: 400px;
	background: color-mix(in srgb, var(--sector-color, #0ea5e9) 8%, transparent);
	border-radius: 50%;
	filter: blur(80px);
	top: -80px; right: -80px;
	pointer-events: none;
}

.contacto-inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 72px;
	align-items: start;
	position: relative;
	z-index: 1;
}

/* Panel info */
.contacto-info { padding-top: 8px; }
.contacto-info .section-label { margin-bottom: 14px; }
.contacto-info h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 900;
	color: #0f1f3d;
	line-height: 1.2;
	margin-bottom: 16px;
	letter-spacing: -.02em;
}
.contacto-sector-name {
	color: var(--sector-color, var(--color-acento));
}
.contacto-info > p {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 32px;
}

/* Garantías */
.contacto-garantias {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contacto-garantias li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .92rem;
	color: #374151;
	font-weight: 500;
}
.garantia-icon {
	width: 28px; height: 28px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--sector-color, #0ea5e9) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--sector-color, #0ea5e9) 30%, transparent);
	color: var(--sector-color, #0ea5e9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 800;
	flex-shrink: 0;
}

/* Botón WhatsApp */
.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25d366;
	color: #fff !important;
	font-weight: 700;
	font-size: .95rem;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .2s, transform .2s, box-shadow .2s;
	box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
	background: #1dbb59;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

.contacto-datos {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contacto-datos li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .88rem;
	color: #6b7280;
}
.contacto-datos li svg {
	color: var(--sector-color, #6b7280);
	flex-shrink: 0;
}
.contacto-datos a {
	color: #374151;
	font-weight: 600;
	text-decoration: none;
	transition: color .2s;
}
.contacto-datos a:hover { color: var(--sector-color, var(--color-primario)); }

/* Panel formulario */
.contacto-form {
	background: #fff;
	border-radius: 24px;
	padding: 44px 40px;
	box-shadow: 0 8px 60px rgba(15,31,61,.1);
	border: 1px solid #eef0f8;
}

.form-simple { background: none; border-radius: 0; padding: 0; box-shadow: none; border: none; }

.form-group { margin-bottom: 20px; }
.form-group label {
	display: block;
	font-size: .82rem;
	font-weight: 700;
	color: #374151;
	margin-bottom: 6px;
	letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	font-size: .93rem;
	color: #1f2937;
	background: #fafbff;
	transition: border-color .2s, box-shadow .2s;
	font-family: inherit;
	appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--sector-color, var(--color-primario));
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--sector-color, #0ea5e9) 10%, transparent);
	background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-submit {
	width: 100%;
	padding: 16px;
	background: var(--sector-color, var(--color-primario));
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: filter .2s, transform .2s, box-shadow .2s;
	margin-top: 8px;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--sector-color, #0ea5e9) 35%, transparent);
}
.form-submit:hover {
	filter: brightness(.9);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px color-mix(in srgb, var(--sector-color, #0ea5e9) 45%, transparent);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: #06122a;
	color: rgba(255,255,255,.6);
	padding: 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	gap: 60px;
	padding: 64px 0 48px;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Columna marca */
.footer-brand { }
.footer-logo {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.3rem;
	font-weight: 900;
	color: #fff;
	text-decoration: none;
	margin-bottom: 16px;
}
.footer-logo-dot {
	width: 8px; height: 8px;
	background: var(--color-acento);
	border-radius: 50%;
}
.footer-logo-sub {
	font-weight: 400;
	color: rgba(255,255,255,.4);
}
.footer-brand p {
	font-size: .88rem;
	line-height: 1.7;
	color: rgba(255,255,255,.45);
	margin-bottom: 24px;
	max-width: 280px;
}

/* Datos de contacto footer */
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .85rem;
	color: rgba(255,255,255,.45);
}
.footer-contact li svg {
	color: rgba(255,255,255,.25);
	flex-shrink: 0;
}
.footer-contact a {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .2s;
}
.footer-contact a:hover { color: var(--color-acento); }

/* Columnas de links */
.footer-col { }
.footer-heading {
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.35);
	margin-bottom: 20px;
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	font-size: .88rem;
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .2s;
	display: flex;
	align-items: center;
	gap: 6px;
}
.footer-links a::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	flex-shrink: 0;
	transition: background .2s;
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { background: var(--color-acento); }

/* CTA box footer */
.footer-cta-box {
	margin-top: 28px;
	padding: 20px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
}
.footer-cta-box p {
	font-size: .82rem;
	color: rgba(255,255,255,.45);
	line-height: 1.5;
	margin-bottom: 14px;
}

/* Footer bottom bar */
.footer-bottom {
	padding: 20px 0;
}
.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.footer-bottom p {
	font-size: .82rem;
	color: rgba(255,255,255,.3);
	margin: 0;
}
.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .78rem;
	color: rgba(255,255,255,.25);
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	padding: 4px 12px;
	border-radius: 999px;
}
.footer-badge-dot {
	width: 6px; height: 6px;
	background: #22c55e;
	border-radius: 50%;
}


/* ============================================================
   TECNOLOGÍAS — marquee oscuro estilo agencia
   ============================================================ */
.tech-section {
	background: #080f1e;
	padding: 0;
	overflow: hidden;
}

.tech-section-header {
	text-align: center;
	padding: 48px 24px 32px;
}
.tech-section-label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.25);
	margin: 0;
}

/* Fades laterales */
.tech-marquee-wrap {
	position: relative;
	padding: 12px 0;
}
.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: 180px;
	z-index: 2;
	pointer-events: none;
}
.tech-marquee-wrap::before {
	left: 0;
	background: linear-gradient(90deg, #080f1e, transparent);
}
.tech-marquee-wrap::after {
	right: 0;
	background: linear-gradient(270deg, #080f1e, transparent);
}
.tech-marquee-wrap--reverse {
	padding-bottom: 48px;
}

/* Banda animada */
.tech-marquee {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	animation: marquee-scroll 35s linear infinite;
}
.tech-marquee--reverse {
	animation-direction: reverse;
	animation-duration: 40s;
}
.tech-marquee:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Logos subidos (imágenes) */
.tech-marquee--images .tech-item {
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
}
.tech-item img {
	height: 32px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: .35;
	transition: opacity .3s;
}
.tech-item:hover img {
	opacity: .75;
}

/* Placeholder de texto (antes de subir logos) */
.tech-item--placeholder {
	padding: 0;
	background: none;
	border: none;
}
.tech-item--placeholder span {
	font-size: .88rem;
	font-weight: 700;
	color: rgba(255,255,255,.2);
	white-space: nowrap;
	letter-spacing: .04em;
	transition: color .3s;
}
.tech-item--placeholder:hover span {
	color: rgba(255,255,255,.5);
}

.footer-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	font-size: .85rem;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .2s, transform .2s;
	width: 100%;
	justify-content: center;
}
.footer-wa-btn:hover {
	background: #1dbb59;
	transform: translateY(-1px);
	color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.turismo-grid  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
	.porque-grid   { grid-template-columns: 1fr 1fr; gap: 20px; }
	.footer-inner  { grid-template-columns: 1fr 1fr; }
	.footer-brand  { grid-column: 1 / -1; }
	.footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
	.turismo-section,
	.otros-section,
	.porque-section,
	.contacto-section { padding: 72px 0; }

	.turismo-grid  { max-width: 100%; }
	.otros-grid    { grid-template-columns: 1fr 1fr; }
	.porque-grid   { grid-template-columns: 1fr; gap: 16px; }

	.contacto-inner { grid-template-columns: 1fr; gap: 40px; }
	.contacto-form  { padding: 28px 24px; }

	.footer-inner  { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 36px; }
	.footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.otros-grid  { grid-template-columns: 1fr; }
	.form-row    { grid-template-columns: 1fr; }
}
