Replace navy blue/gold color scheme with dark backgrounds (#0a0a0a, #111, #1a1a1a) and silver/platinum metallic accents (#c0c0c0, #d4d4d4, #e8e8e8) to match the LP logo's chrome/silver gradient aesthetic. All sections (navbar, hero, service cards, values, testimonials, contact, footer, forms, confirmation page) updated for luxury dark theme with subtle silver glow effects and metallic gradients. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
70 lines
3.1 KiB
PHP
70 lines
3.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Gestoría LP — Expertos en trámites migratorios: visa americana, SENTRI, pasaporte, doble nacionalidad y más.">
|
|
<title><?= isset($pageTitle) ? htmlspecialchars($pageTitle) . ' | Gestoría LP' : 'Gestoría LP — Trámites Migratorios Profesionales' ?></title>
|
|
|
|
<!-- Google Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
|
|
<!-- Font Awesome 6 -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
|
|
|
<!-- Site Stylesheet -->
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
|
|
<!-- Dark theme meta -->
|
|
<meta name="theme-color" content="#0a0a0a">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navigation -->
|
|
<header class="navbar" id="navbar">
|
|
<div class="container navbar__inner">
|
|
<a href="index.php" class="navbar__brand">
|
|
<img src="assets/img/logo.jpg" alt="Gestoría LP" class="navbar__logo">
|
|
<span>Gestoría <strong>LP</strong></span>
|
|
</a>
|
|
|
|
<nav class="navbar__menu" id="navMenu">
|
|
<ul class="navbar__list">
|
|
<li class="navbar__item">
|
|
<a href="index.php" class="navbar__link">Inicio</a>
|
|
</li>
|
|
<li class="navbar__item navbar__item--dropdown">
|
|
<a href="#servicios" class="navbar__link navbar__link--dropdown">
|
|
Servicios <i class="fa-solid fa-chevron-down"></i>
|
|
</a>
|
|
<ul class="navbar__dropdown">
|
|
<?php
|
|
require_once __DIR__ . '/servicios-data.php';
|
|
foreach ($SERVICIOS as $slug => $servicio): ?>
|
|
<li>
|
|
<a href="servicio.php?s=<?= htmlspecialchars($slug) ?>" class="navbar__dropdown-link">
|
|
<i class="fa-solid <?= htmlspecialchars($servicio['icono']) ?>"></i>
|
|
<?= htmlspecialchars($servicio['nombre']) ?>
|
|
</a>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</li>
|
|
<li class="navbar__item">
|
|
<a href="#contacto" class="navbar__link">Contacto</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<button class="navbar__toggle" id="navToggle" aria-label="Abrir menú" aria-expanded="false">
|
|
<span class="navbar__toggle-bar"></span>
|
|
<span class="navbar__toggle-bar"></span>
|
|
<span class="navbar__toggle-bar"></span>
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|