/* ==========================================================================
   VTLG - Asesoría en Comercio Exterior | Stylesheet Principal
   Colores: Azul Corporativo, Amarillo Ámbar y Blanco Puro
   ========================================================================== */

/* --- CSS Variables / Design System --- */
:root {
  /* Paleta de Colores Corporativa */
  --navy-900: #051a24;
  --navy-800: #0b2d3c;
  --navy-700: #0f3d52;
  --navy-600: #16536e;
  --navy-500: #206d91;
  --navy-100: #e6f0f5;
  --navy-50: #f0f6fa;

  --yellow-500: #f5a623;
  --yellow-400: #ffbc3d;
  --yellow-600: #d98e11;
  --yellow-100: #fef5e6;

  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --success: #10b981;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Tipografías */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sombras y Elevaciones */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(11, 45, 60, 0.08), 0 2px 4px -2px rgba(11, 45, 60, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(11, 45, 60, 0.1), 0 4px 6px -4px rgba(11, 45, 60, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(11, 45, 60, 0.12), 0 8px 10px -6px rgba(11, 45, 60, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(11, 45, 60, 0.25);
  --shadow-yellow: 0 10px 25px -5px rgba(245, 166, 35, 0.4);
  --shadow-navy: 0 10px 25px -5px rgba(11, 45, 60, 0.3);

  /* Transiciones y Bordes */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Resets y Estilos Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Contenedor General --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Tipografía y Títulos --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy-800);
  line-height: 1.2;
  font-weight: 700;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag-light {
  background: rgba(245, 166, 35, 0.15);
  color: var(--yellow-400);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy-800);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.highlight-yellow {
  color: var(--yellow-500);
  position: relative;
  display: inline-block;
}

.highlight-blue {
  color: var(--navy-600);
  position: relative;
}

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow-400) 0%, var(--yellow-500) 100%);
  color: var(--navy-900);
  box-shadow: var(--shadow-yellow);
}

.btn-yellow:hover {
  background: linear-gradient(135deg, var(--yellow-500) 0%, var(--yellow-600) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--navy-900);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-card {
  background: rgba(37, 211, 102, 0.15);
  color: #a7f3d0;
  border: 1px solid rgba(37, 211, 102, 0.3);
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.btn-whatsapp-card:hover {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--navy-900);
  color: var(--slate-300);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-300);
}

.top-link i {
  color: var(--yellow-400);
  font-size: 0.85rem;
}

.top-link:hover {
  color: var(--white);
}

.top-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}

.top-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-400);
}

.top-hours i {
  color: var(--yellow-400);
}

/* ==========================================================================
   2. HEADER & NAVEGACIÓN
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--slate-200);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--yellow-500);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--navy-800);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--white);
  padding: 6rem 0 7rem;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 36, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--yellow-500);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--navy-500);
  bottom: -150px;
  left: -100px;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--yellow-400);
  top: 40%;
  left: 45%;
  opacity: 0.15 !important;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-400);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--yellow-400);
  box-shadow: 0 0 10px var(--yellow-400);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.trust-item i {
  color: var(--yellow-400);
  font-size: 1rem;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(11, 45, 60, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.card-header-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--yellow-500) 0%, var(--yellow-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.card-header-text h3 {
  font-size: 1.2rem;
  color: var(--white);
}

.card-header-text p {
  font-size: 0.85rem;
  color: var(--yellow-400);
}

.card-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--yellow-400);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-300);
}

.operation-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-400);
  font-size: 0.85rem;
}

.step-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-300);
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ==========================================================================
   4. SOBRE NOSOTROS
   ========================================================================== */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy-50);
  color: var(--navy-700);
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

.about-visual {
  position: relative;
}

.visual-stack {
  position: relative;
}

.visual-main-box {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.logo-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.about-logo-badge {
  height: 42px;
  width: auto;
}

.visual-main-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.visual-main-box p {
  color: var(--slate-300);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--slate-200);
}

.check-item i {
  color: var(--yellow-400);
}

.visual-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  border: 1px solid var(--slate-200);
}

.visual-card-1 {
  top: -25px;
  right: -20px;
}

.visual-card-2 {
  bottom: -25px;
  left: -20px;
}

.vc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-100);
  color: var(--yellow-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vc-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-800);
}

.vc-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-600);
}

/* ==========================================================================
   5. SERVICIOS SECTION
   ========================================================================== */
.services-section {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-700), var(--yellow-500));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-100);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-50) 0%, var(--navy-100) 100%);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--yellow-400);
  transform: scale(1.05);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-300);
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: var(--yellow-500);
}

.service-header {
  cursor: pointer;
  user-select: none;
}

.service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-chevron {
  color: var(--navy-600);
  transition: transform 0.3s ease;
}

.service-card.active .service-chevron {
  transform: rotate(180deg);
  color: var(--yellow-500);
}

.service-title {
  font-size: 1.3rem;
  color: var(--navy-900);
  letter-spacing: -0.3px;
  margin-bottom: 0;
}

.service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card.active .service-content {
  max-height: 1000px;
  opacity: 1;
  margin-top: 1.5rem;
}

.service-description {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--slate-700);
}

.service-bullets li i {
  color: var(--yellow-500);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-card-footer {
  border-top: 1px solid var(--slate-100);
  padding-top: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-700);
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--yellow-600);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Tarjeta Highlight (Transporte) */
.service-card-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, var(--navy-50) 100%);
  border-color: rgba(15, 61, 82, 0.2);
}

/* ==========================================================================
   6. COTIZADOR INTERACTIVO
   ========================================================================== */
.cotizador-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.cotizador-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(12px);
}

.cotizador-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cotizador-title {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.cotizador-subtitle {
  color: var(--slate-300);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label i {
  color: var(--yellow-400);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--yellow-400);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.form-control option {
  background-color: var(--navy-900);
  color: var(--white);
}

.cotizador-result-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.result-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  color: var(--yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.result-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.result-text p {
  color: var(--slate-300);
  font-size: 0.88rem;
}

.cotizador-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================================
   7. POR QUÉ ELEGIR VTLG (VENTAJAS)
   ========================================================================== */
.ventajas-section {
  position: relative;
  background-color: var(--navy-900);
  overflow: hidden;
}

.ventajas-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 36, 0.5);
  z-index: 1;
  pointer-events: none;
}

.relative-container {
  position: relative;
  z-index: 2;
}

.ventajas-section .section-title,
.ventajas-section .section-subtitle {
  color: var(--white);
}

.ventajas-section .section-title .highlight-blue {
  color: var(--yellow-400);
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.ventaja-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.ventaja-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.4);
}

.ventaja-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  color: var(--yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.ventaja-card:hover .ventaja-icon {
  background: var(--yellow-400);
  color: var(--navy-900);
  transform: scale(1.1);
}

.ventaja-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.ventaja-desc {
  font-size: 0.9rem;
  color: var(--slate-300);
}

/* Banner de Confianza */
.banner-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}

.banner-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.banner-content p {
  color: var(--slate-300);
  font-size: 1rem;
}

/* ==========================================================================
   8. FAQ SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--yellow-600);
}

.faq-chevron {
  font-size: 0.9rem;
  color: var(--navy-600);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--yellow-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   9. SECCIÓN DE CONTACTO
   ========================================================================== */
.contact-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-title {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-lead {
  color: var(--slate-300);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateX(4px);
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 166, 35, 0.15);
  color: var(--yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-400);
  font-weight: 600;
}

.method-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.method-val:hover {
  color: var(--yellow-400);
}

.method-val-text {
  font-size: 0.95rem;
  color: var(--slate-200);
}

.contact-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  color: #a7f3d0;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Tarjeta Formulario */
.form-container-card {
  background: var(--white);
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-card-title {
  font-size: 1.75rem;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.form-card-subtitle {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 1.75rem;
}

.main-form .form-label {
  color: var(--slate-700);
}

.main-form .form-control {
  background: var(--slate-50);
  border: 1px solid var(--slate-300);
  color: var(--slate-800);
}

.main-form .form-control:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(15, 61, 82, 0.15);
}

.main-form .form-control option {
  background: var(--white);
  color: var(--slate-800);
}

.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  font-size: 0.95rem;
}

.input-icon-wrapper .form-control {
  padding-left: 2.75rem;
}

.textarea-control {
  resize: vertical;
  min-height: 100px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-error {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-error.visible {
  display: block;
}

.form-submit-row {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.form-whatsapp-alternative {
  text-align: center;
  font-size: 0.88rem;
  color: var(--slate-600);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-200);
}

.link-wa {
  font-weight: 700;
  color: var(--whatsapp-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.link-wa:hover {
  color: var(--whatsapp);
}

/* Success Box */
.form-success-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.form-success-box h4 {
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.form-success-box p {
  color: var(--slate-600);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--navy-900);
  color: var(--slate-400);
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--slate-400);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--yellow-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--yellow-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--yellow-500);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.footer-contact-list li i {
  color: var(--yellow-400);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--yellow-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.85rem;
  color: var(--slate-400);
}

.footer-bottom strong {
  color: var(--white);
}

/* ==========================================================================
   11. WHATSAPP WIDGET & BACK TO TOP
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-900);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.wa-float-btn:hover .wa-tooltip {
  opacity: 1;
  right: 75px;
}

/* Popup de WhatsApp */
.wa-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUpPopup 0.3s ease;
  border: 1px solid var(--slate-200);
}

.wa-popup.active {
  display: flex;
}

@keyframes slideUpPopup {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-popup-header {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.wa-avatar {
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-avatar img {
  width: 36px;
  height: auto;
}

.wa-popup-info h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.wa-popup-info p {
  color: var(--yellow-400);
  font-size: 0.78rem;
}

.wa-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--slate-300);
  font-size: 1.4rem;
  cursor: pointer;
}

.wa-close-btn:hover {
  color: var(--white);
}

.wa-popup-body {
  padding: 1.25rem 1rem;
  background: var(--slate-50);
}

.wa-welcome-text {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 0.85rem;
}

.wa-agent-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.wa-agent-item:last-child {
  margin-bottom: 0;
}

.wa-agent-item:hover {
  border-color: var(--whatsapp);
  background: #f0fdf4;
  transform: translateY(-2px);
}

.wa-agent-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.wa-agent-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wa-agent-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
}

.wa-agent-phone {
  font-size: 0.75rem;
  color: var(--slate-600);
}

.wa-item-wa {
  color: var(--whatsapp);
  font-size: 1.2rem;
}

/* Botón Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--yellow-500);
  color: var(--navy-900);
  transform: translateY(-4px);
}

/* ==========================================================================
   12. RESPONSIVE / MEDIA QUERIES (FULL DEVICE SUPPORT)
   ========================================================================== */

/* --- Laptops & Desktops Grandes (max-width: 1200px) --- */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .hero-title {
    font-size: 2.85rem;
  }
}

/* --- Tablets en Paisaje & Laptops Pequeñas (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .top-info {
    gap: 1rem;
  }

  .top-hours {
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-container {
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card-highlight {
    grid-column: span 2;
  }

  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* --- Tablets en Retrato & Pantallas Medianas (max-width: 900px) --- */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-content {
    text-align: center;
  }

  .about-description {
    margin-left: auto;
    margin-right: auto;
  }

  .about-features {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cotizador-result-box {
    flex-direction: column;
    text-align: center;
  }

  .result-summary {
    flex-direction: column;
    text-align: center;
  }

  .cotizador-actions {
    width: 100%;
    flex-direction: column;
  }

  .cotizador-actions .btn {
    width: 100%;
  }

  .banner-cta {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 2rem;
  }
}

/* --- Móviles y Tablets Pequeñas (max-width: 768px) --- */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    padding: 4.5rem 0 5rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  /* Prevenir zoom automático en iOS para campos de formulario */
  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }

  /* Header & Menú Móvil */
  .header-container {
    position: relative;
    justify-content: center;
  }

  .brand-logo {
    margin: 0 auto;
  }

  .header-actions {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-img {
    height: 44px;
  }

  .menu-toggle {
    display: flex;
  }

  .hide-mobile {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 1.75rem;
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, padding 0.3s, visibility 0.3s;
    border-bottom: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.open {
    max-height: calc(100vh - 65px);
    padding: 1.5rem 1.75rem 2.5rem;
    border-bottom: 3px solid var(--yellow-500);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* Tarjetas Flotantes en Sobre Nosotros */
  .visual-card-1 {
    top: -15px;
    right: 5px;
  }

  .visual-card-2 {
    bottom: -15px;
    left: 5px;
  }

  /* Grid de Servicios */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-highlight {
    grid-column: span 1;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  /* Formularios */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .cotizador-wrapper {
    padding: 2.25rem 1.5rem;
  }

  .form-container-card {
    padding: 2.25rem 1.5rem;
  }

  /* Ventajas & FAQ */
  .ventajas-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .footer-logo {
    height: 64px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem 0;
  }

  /* Desactivar tooltips en táctil */
  .wa-tooltip {
    display: none !important;
  }
}

/* --- Teléfonos Móviles Estándar (max-width: 480px) --- */
@media (max-width: 480px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .badge-hero {
    font-size: 0.76rem;
    padding: 0.4rem 0.85rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card-main {
    padding: 1.5rem 1.15rem;
  }

  .card-header-icon {
    gap: 0.75rem;
  }

  .icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .card-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-box {
    padding: 0.75rem 0.5rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .operation-flow {
    padding: 0.75rem 0.5rem;
    gap: 0.2rem;
  }

  .step-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .step-text {
    font-size: 0.65rem;
  }

  /* Sobre Nosotros - Tarjetas flotantes se integran */
  .visual-main-box {
    padding: 1.75rem 1.25rem;
  }

  .visual-card {
    position: static;
    margin-top: 1rem;
    width: 100%;
    box-shadow: var(--shadow-sm);
  }

  .visual-card-1,
  .visual-card-2 {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  /* Cotizador */
  .cotizador-wrapper {
    padding: 1.75rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .cotizador-title {
    font-size: 1.5rem;
  }

  .cotizador-subtitle {
    font-size: 0.9rem;
  }

  .cotizador-result-box {
    padding: 1.15rem 1rem;
  }

  /* Valor Diferencial / Banner */
  .banner-cta {
    padding: 1.75rem 1.25rem;
  }

  .banner-content h3 {
    font-size: 1.3rem;
  }

  /* Contacto */
  .contact-title {
    font-size: 1.85rem;
  }

  .form-container-card {
    padding: 1.75rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .form-card-title {
    font-size: 1.4rem;
  }

  .method-card {
    padding: 0.85rem 1rem;
  }

  .method-val {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-logo {
    height: 54px;
  }

  /* WhatsApp Widget & Back to Top en Móviles */
  .whatsapp-widget {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wa-float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }

  .wa-popup {
    position: fixed;
    bottom: 80px;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
  }

  .back-to-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* --- Teléfonos Muy Pequeños (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .card-stats-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }

  .header-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ==========================================================================
   NUESTRO EQUIPO / CONTACTO
   ========================================================================== */
.team-section {
  background-color: var(--slate-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--slate-200);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow-400);
}

.team-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-50);
  color: var(--navy-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.team-card:hover .team-icon {
  background: var(--navy-600);
  color: var(--white);
}

.team-name {
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.team-contact a i {
  color: var(--yellow-500);
}

.team-contact a:hover {
  color: var(--navy-600);
}