/* ==========================================
   PALETA DE COLORES - INSPIRADA EN DOCÉRE
   ========================================== */
:root {
  --bg-color: #f4f8fb;             /* Fondo muy claro azulado */
  --text-color: #0d1b2a;           /* Texto oscuro contrastante */
  --card-bg: #ffffff;              /* Tarjetas blancas y limpias */
  --border-color: #e2e8f0;         /* Bordes suaves */
  --primary: #00a8e8;              /* Azul Cyan brillante estilo Docére */
  --primary-hover: #0077b6;        /* Azul medio para interacción */
  --dark-navy: #03045e;            /* Azul marino profundo */
  --emerald: #10b981;              /* Verde para WhatsApp y botones de acción */
  --amber: #ffb703;                /* Amarillo/Naranja cálido para avisos */
  --gray-sub: #4a5568;             /* Texto secundario gris */
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* MODO OSCURO */
body.dark-mode {
  --bg-color: #0a1118;
  --text-color: #f1f5f9;
  --card-bg: #131f2d;
  --border-color: #1e2e42;
  --gray-sub: #94a3b8;
  --dark-navy: #00a8e8;
}

/* RESETS Y BASE */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

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

.max-width-md { 
  max-width: 800px; 
  margin: 0 auto; 
}

.section { 
  padding: 80px 20px; 
}

/* ==========================================
   BANDA DE PROMOCIÓN
   ========================================== */
.promo-bar {
  background: linear-gradient(90deg, #00a8e8, #0077b6, #03045e);
  color: white; 
  text-align: center; 
  padding: 10px 15px; 
  font-size: 13px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
}

.promo-bar a { 
  color: #ffd166; 
  text-decoration: underline; 
  font-weight: bold; 
}

/* ==========================================
   NAVEGACIÓN
   ========================================== */
.navbar {
  position: sticky; 
  top: 0; 
  z-index: 100;
  background: linear-gradient(90deg, #eaf7ff 0%, #dcefff 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #cfe6f7;
}

body.dark-mode .navbar { 
  background: linear-gradient(90deg, #1b4a6d 0%, #2c5d82 100%);
}

.secondary-navbar {
  position: sticky;
  top: 72px;
  z-index: 95;
  background: linear-gradient(90deg, #edf8ff 0%, #dfefff 100%);
  border-bottom: 1px solid #cfe6f7;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(15, 45, 77, 0.08);
}

body.dark-mode .secondary-navbar {
  background: linear-gradient(90deg, #17354d 0%, #234c67 100%);
}

.nav-container {
  position: relative;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 15px 20px;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 16px;
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

/* Header logo image */
.brand-logo {
  max-height: 46px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 38px; 
  height: 38px; 
  background: linear-gradient(135deg, #00a8e8, #03045e);
  color: white; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.brand-name { 
  font-weight: 900; 
  font-size: 18px; 
  display: block; 
  color: var(--dark-navy); 
}

body.dark-mode .brand-name { 
  color: white; 
}

.brand-sub { 
  font-size: 9px; 
  text-transform: uppercase; 
  color: var(--gray-sub); 
  letter-spacing: 1px; 
}

.nav-links { 
  display: flex; 
  list-style: none; 
  gap: 20px; 
}

.secondary-nav-links {
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0;
}

.secondary-nav-links a {
  font-size: 13px;
}

.mobile-login-link {
  display: none;
}

.nav-links a { 
  text-decoration: none; 
  color: var(--text-color); 
  font-size: 14px; 
  font-weight: 600; 
}

.nav-links a.current {
  color: var(--text-color);
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.nav-links a:hover { 
  color: var(--primary); 
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Ocultar flechas/chevrons en el menú de navegación */
.nav-links [data-lucide="chevron-down"],
.nav-links [data-lucide="chevron-right"] {
  display: none !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 220px;
  z-index: 200;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: rgba(0, 168, 232, 0.08);
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Submenu (right-side) for Cursos de tecnología */
.nav-dropdown-sub { position: relative; }
.dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 8px 0;
  min-width: 220px;
  z-index: 210;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nav-dropdown-sub:hover .dropdown-submenu,
.nav-dropdown-sub:focus-within .dropdown-submenu { display: block; }

.dropdown-submenu li a { display: block; padding: 10px 14px; color: var(--text-color); font-size: 13px; }
.dropdown-submenu li a:hover { background: rgba(0,168,232,0.08); color: var(--primary); }

.nav-actions { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.search-box-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.5px 10px;
  background: var(--card-bg);
  min-width: 280px;
  flex: 1;
  max-width: 660px;
}

.search-box-nav input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-color);
  font-size: 12px;
  width: 100%;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(3,4,94,0.04);
}

.icon-btn {
  background: transparent; 
  border: 1px solid var(--border-color);
  padding: 8px; 
  border-radius: 10px; 
  cursor: pointer; 
  color: var(--text-color);
}

.mobile-only { 
  display: none; 
}

/* ==========================================
   BOTONES
   ========================================== */
.btn {
  padding: 10px 20px; 
  border-radius: 12px; 
  font-size: 14px; 
  font-weight: 600;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  cursor: pointer; 
  border: none; 
  transition: all 0.2s;
}

.btn-primary { 
  background: var(--primary); 
  color: white; 
}

.btn-primary:hover { 
  background: var(--primary-hover); 
}

.btn-dark { 
  background: #03045e; 
  color: white; 
}

.btn-emerald { 
  background: var(--emerald); 
  color: white; 
}

.btn-white { 
  background: white; 
  color: #03045e; 
}

.btn-outline { 
  border: 1px solid var(--border-color); 
  color: var(--text-color); 
}

.btn-login {
  background: var(--primary-hover);
  color: white;
  border: 1px solid var(--primary-hover);
}

.btn-login:hover {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
}

.btn-whatsapp-outline { 
  border: 1px solid var(--emerald); 
  color: var(--emerald); 
}

.btn-outline-sm { 
  border: 1px solid var(--primary); 
  color: var(--primary); 
  padding: 6px 12px; 
  font-size: 12px; 
}

.btn-full { 
  width: 100%; 
  justify-content: center; 
}

/* ==========================================
   CARRUSEL SLIDER (FULL-WIDTH)
   ========================================== */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark-navy);
}

.carousel-track {
  display: flex;
  width: 400%; /* 4 slides */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 25%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background: none;
}

.slide-image-only {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.slide-1 {
  background: url('port.png') center/cover no-repeat;
}

.slide-2 {
  background: linear-gradient(rgba(3, 4, 94, 0.75), rgba(0, 168, 232, 0.75)), 
              url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1400&q=80');
}

.slide-3 {
  background: linear-gradient(rgba(3, 4, 94, 0.8), rgba(16, 185, 129, 0.75)), 
              url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1400&q=80');
}

.slide-4 {
  background: linear-gradient(rgba(3, 4, 94, 0.75), rgba(0, 168, 232, 0.75)),
              url('https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?auto=format&fit=crop&w=1400&q=80');
}

.slide-image {
  margin: 0 auto 28px;
  max-width: 380px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-content {
  max-width: 700px;
  color: white;
  z-index: 2;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.slide-content h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.slide-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 26px;
  border-radius: 10px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero { 
  position: relative; 
  padding: 60px 0 80px; 
  overflow: hidden; 
}

.hero-bg-glow {
  position: absolute; 
  top: 10%; 
  left: 50%; 
  transform: translateX(-50%);
  width: 500px; 
  height: 250px; 
  background: radial-gradient(circle, rgba(0,168,232,0.2), transparent);
  filter: blur(80px); 
  pointer-events: none;
}

.hero-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 40px; 
  align-items: center; 
}

.page-header {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.page-header .hero-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.page-title-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-title-block h1 {
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: 1.05;
  margin: 0;
  color: var(--dark-navy);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.job-card h2 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--dark-navy);
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.job-list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-sub);
  font-size: 14px;
}

.job-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
}

.contact-form-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  max-width: 820px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

textarea {
  min-height: 160px;
}

.btn-full {
  width: 100%;
}

@media (max-width: 860px) {
  .page-header,
  .jobs-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header .hero-cover {
    height: 320px;
  }
}

.hero-text h1 { 
  font-size: 48px; 
  font-weight: 900; 
  line-height: 1.1; 
  margin-bottom: 20px; 
  color: var(--dark-navy); 
}

body.dark-mode .hero-text h1 { 
  color: white; 
}

.gradient-text {
  background: linear-gradient(90deg, #00a8e8, #0077b6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-text p { 
  color: var(--gray-sub); 
  font-size: 16px; 
  margin-bottom: 25px; 
}

.hero-buttons { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin-bottom: 40px; 
}

.hero-stats { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  border-top: 1px solid var(--border-color); 
  padding-top: 20px; 
}

.stat h3 { 
  font-size: 26px; 
  color: var(--primary); 
  font-weight: 800; 
}

.stat p { 
  font-size: 12px; 
  color: var(--gray-sub); 
}

.img-card { 
  position: relative; 
  border-radius: 24px; 
  overflow: hidden; 
  border: 1px solid var(--border-color); 
  box-shadow: 0 15px 30px rgba(0,168,232,0.1); 
}

.img-card img { 
  width: 100%; 
  height: 380px; 
  object-fit: cover; 
  display: block; 
}

.img-badge {
  position: absolute; 
  bottom: 15px; 
  left: 15px; 
  right: 15px;
  background: rgba(3, 4, 94, 0.85); 
  backdrop-filter: blur(8px); 
  color: white;
  padding: 15px; 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 12px;
}

/* ==========================================
   BUSCADOR INTERACTIVO
   ========================================== */
.search-section { 
  padding: 20px; 
  background: rgba(0,168,232,0.03); 
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color); 
}

.search-box {
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: var(--card-bg);
  border: 1px solid var(--border-color); 
  padding: 12px 18px; 
  border-radius: 16px;
}

.search-box input { 
  border: none; 
  outline: none; 
  background: transparent; 
  width: 100%; 
  color: var(--text-color); 
  font-size: 14px; 
}

.search-results {
  background: var(--card-bg); 
  border: 1px solid var(--border-color);
  border-radius: 12px; 
  margin-top: 10px; 
  padding: 10px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.search-item { 
  padding: 8px 12px; 
  border-bottom: 1px solid var(--border-color); 
  font-size: 13px; 
  cursor: pointer; 
}

.search-item:last-child { 
  border: none; 
}

.hidden { 
  display: none; 
}

/* ==========================================
   SERVICIOS
   ========================================== */
.section-title { 
  text-align: center; 
  margin-bottom: 50px; 
}

.section-title span { 
  color: var(--primary); 
  font-size: 11px; 
  font-weight: 800; 
  letter-spacing: 1.5px; 
}

.section-title h2 { 
  font-size: 32px; 
  font-weight: 900; 
  color: var(--dark-navy); 
}

body.dark-mode .section-title h2 { 
  color: white; 
}

.section-title p { 
  color: var(--gray-sub); 
  font-size: 14px; 
}

.cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
}

.card {
  background: var(--card-bg); 
  border: 1px solid var(--border-color);
  padding: 30px; 
  border-radius: 24px; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.card-wide { 
  grid-column: span 2; 
}

.card-icon { 
  width: 44px; 
  height: 44px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 20px; 
}

.card-icon.blue { background: rgba(0,168,232,0.12); color: var(--primary); }
.card-icon.emerald { background: rgba(16,185,129,0.12); color: var(--emerald); }
.card-icon.purple { background: rgba(147,51,234,0.12); color: #9333ea; }
.card-icon.indigo { background: rgba(3,4,94,0.12); color: #03045e; }

.card h3 { 
  font-size: 20px; 
  margin-bottom: 10px; 
}

.card p { 
  color: var(--gray-sub); 
  font-size: 13px; 
  margin-bottom: 15px; 
}

.tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  margin-bottom: 20px; 
}

.tags span { 
  background: rgba(0,168,232,0.08); 
  color: var(--primary-hover); 
  padding: 4px 10px; 
  border-radius: 8px; 
  font-size: 11px; 
  font-weight: 600; 
}

.card-footer { 
  font-size: 12px; 
  font-weight: 700; 
  margin-top: auto; 
  padding-top: 15px; 
  border-top: 1px solid var(--border-color); 
}

.card-footer.blue { color: var(--primary); }
.card-footer.emerald { color: var(--emerald); }
.card-footer.purple { color: #9333ea; }
.card-footer.indigo { color: #03045e; }

.blue-gradient { 
  background: linear-gradient(135deg, #03045e, #0077b6); 
  color: white; 
}

.blue-gradient p { 
  color: #caf0f8; 
}

.card-header-wide { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 15px; 
}

.badge-accent { 
  background: var(--primary); 
  color: white; 
  font-size: 10px; 
  font-weight: bold; 
  padding: 4px 10px; 
  border-radius: 20px; 
}

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

.features-3 div { 
  background: rgba(255,255,255,0.08); 
  padding: 12px; 
  border-radius: 12px; 
  font-size: 12px; 
}

/* ==========================================
   BLOG
   ========================================== */
.blog-section {
  background: var(--bg-color);
}

.blog-section-title {
  text-align: left;
  margin-bottom: 28px;
}

.blog-section-title h2 {
  margin: 6px 0 8px;
}

.blog-publish-button {
  margin-top: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
}

.blog-meta span:last-child {
  color: #ef4423;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.blog-card p {
  margin-bottom: 18px;
  color: var(--gray-sub);
  font-size: 13px;
}

.blog-author {
  display: block;
  color: var(--gray-sub);
  font-size: 11px;
}

.blog-link {
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary);
}

.blog-editor-page {
  min-height: calc(100vh - 80px);
}

.blog-editor-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 45, 77, 0.06);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-group label {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  margin-bottom: 0;
}

.field-group textarea {
  resize: vertical;
}

.field-help {
  color: var(--gray-sub);
  font-size: 12px;
}

.blog-image-preview {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.form-status {
  min-height: 22px;
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #dc2626;
}

/* ==========================================
   NUESTRA MISIÓN
   ========================================== */
.mission-hero {
  padding: 90px 20px 80px;
  background: linear-gradient(135deg, #eaf7ff 0%, #ffffff 55%, #fff4d6 100%);
  border-bottom: 1px solid var(--border-color);
}

.mission-hero-content {
  max-width: 900px;
}

.mission-hero h1 {
  max-width: 850px;
  margin: 20px 0;
  color: var(--dark-navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.mission-hero p {
  max-width: 780px;
  color: var(--gray-sub);
  font-size: 17px;
}

.mission-principles {
  background: var(--bg-color);
}

.mission-section-title {
  margin-bottom: 34px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mission-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(15, 45, 77, 0.04);
}

.mission-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(0, 168, 232, 0.12);
  color: var(--primary-hover);
}

.mission-card h3 {
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-size: 20px;
}

.mission-card p {
  color: var(--gray-sub);
  font-size: 14px;
}

.mission-social-section {
  background: rgba(255, 183, 3, 0.08);
}

.mission-social-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 42px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 183, 3, 0.35);
  border-radius: 22px;
}

.mission-social-content h2 {
  margin: 18px 0 14px;
  color: var(--dark-navy);
  font-size: 32px;
  line-height: 1.2;
}

.mission-social-content p {
  margin-bottom: 14px;
  color: var(--gray-sub);
  font-size: 15px;
}

.mission-social-content strong {
  display: block;
  margin-top: 22px;
  color: var(--primary-hover);
  font-size: 16px;
}

/* ==========================================
   NUESTRA HISTORIA
   ========================================== */
.story-hero {
  padding: 76px 20px 0;
  background: linear-gradient(135deg, #eaf7ff 0%, #ffffff 60%, #fff4d6 100%);
}

.story-hero h1 {
  margin: 18px 0 32px;
  color: var(--dark-navy);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.story-cover {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 16px 35px rgba(15, 45, 77, 0.12);
}

.story-section {
  background: var(--bg-color);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 150px;
}

.story-intro > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.story-intro h2 {
  margin-top: 12px;
  color: var(--dark-navy);
  font-size: 30px;
  line-height: 1.2;
}

.story-content {
  max-width: 720px;
  padding: 34px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(15, 45, 77, 0.04);
}

.story-content p {
  margin-bottom: 18px;
  color: var(--gray-sub);
  font-size: 15px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-closing {
  background: rgba(255, 183, 3, 0.08);
}

.story-closing-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid rgba(255, 183, 3, 0.35);
  border-radius: 22px;
}

.story-closing-box > svg {
  margin-bottom: 10px;
  color: #d97706;
}

.story-closing-box h2 {
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-size: 30px;
}

.story-closing-box p {
  margin-bottom: 20px;
  color: var(--gray-sub);
}

/* ==========================================
   TAREAS EXPRESS
   ========================================== */
.express-section { 
  background: rgba(255, 183, 3, 0.05); 
}

.express-box {
  background: var(--card-bg); 
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 28px; 
  padding: 40px; 
  display: grid; 
  grid-template-columns: 1.5fr 1fr; 
  gap: 40px;
}

.badge-amber { 
  background: rgba(255, 183, 3, 0.15); 
  color: #d97706; 
  font-size: 11px; 
  font-weight: bold; 
  padding: 4px 10px; 
  border-radius: 20px; 
}

.express-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px; 
  font-size: 12px; 
  font-weight: 600; 
  margin: 20px 0; 
}

.ethics-note { 
  display: flex; 
  gap: 10px; 
  background: rgba(0,0,0,0.03); 
  padding: 12px; 
  border-radius: 12px; 
  font-size: 11px; 
  color: var(--gray-sub); 
}

.express-cta {
  background: linear-gradient(135deg, #00a8e8, #03045e); 
  color: white;
  padding: 30px; 
  border-radius: 20px; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
}

.express-cta ul { 
  list-style: none; 
  text-align: left; 
  font-size: 12px; 
  margin: 15px 0; 
}

/* ==========================================
   NOSOTROS / VENTAJAS
   ========================================== */
.why-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px; 
}

.why-item { 
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  padding: 20px; 
  border-radius: 18px; 
}

.why-item svg { 
  color: var(--primary); 
  margin-bottom: 10px; 
}

/* ==========================================
   TESTIMONIOS
   ========================================== */
.testimonials-bg { 
  background: rgba(0,168,232,0.03); 
}

.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
}

.testimonial-card { 
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  padding: 25px; 
  border-radius: 20px; 
  text-align: center;
}

.stars { 
  color: #ffb703; 
  margin-bottom: 10px; 
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  border: 2px solid rgba(0,0,0,0.06);
}

/* ==========================================
   FECHAS / CALENDARIO
   ========================================== */
.dates-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
}

.date-card { 
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  padding: 20px; 
  border-radius: 20px; 
}

/* Layout: content left, image right */
.date-card {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.date-content { 
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.date-image {
  width: 140px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(5,20,40,0.06);
}

.date-badge { 
  background: rgba(0,168,232,0.1); 
  color: var(--primary); 
  font-size: 12px; 
  font-weight: 700; 
  padding: 2px 8px; 
  border-radius: 10px; 
}

.date-badge svg,
.date-badge i[data-lucide] svg {
  width: 14px !important;
  height: 14px !important;
  vertical-align: -2px;
  margin-right: 6px;
}

/* ==========================================
   PREGUNTAS FRECUENTES (FAQ)
   ========================================== */
.faq-accordion { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.faq-item { 
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  border-radius: 14px; 
  overflow: hidden; 
}

.faq-question {
  width: 100%; 
  text-align: left; 
  padding: 18px; 
  background: transparent; 
  border: none;
  color: var(--text-color); 
  font-weight: bold; 
  font-size: 14px; 
  display: flex; 
  justify-content: space-between; 
  cursor: pointer;
}

.faq-answer { 
  padding: 0 18px 18px; 
  display: none; 
  font-size: 13px; 
  color: var(--gray-sub); 
}

.faq-item.active .faq-answer { 
  display: block; 
}

#faq {
  padding-bottom: 24px;
}

/* ==========================================
   CONTACTO
   ========================================== */
#contacto {
  padding-top: 24px;
}

.contact-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 40px; 
}

.contact-form-box { 
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  padding: 35px; 
  border-radius: 24px; 
}

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

input, select, textarea {
  width: 100%; 
  padding: 12px; 
  border-radius: 10px; 
  border: 1px solid var(--border-color);
  background: var(--bg-color); 
  color: var(--text-color); 
  font-size: 13px; 
  margin-bottom: 15px; 
  outline: none;
}

.info-list { 
  list-style: none; 
  margin: 20px 0; 
  font-size: 13px; 
}

.info-list li { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 12px; 
}

.map-container { 
  height: 220px; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid var(--border-color); 
}

/* ==========================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================== */
.whatsapp-float {
  position: fixed; 
  bottom: 25px; 
  right: 25px; 
  background: #10b981; 
  color: white;
  padding: 14px; 
  border-radius: 50px; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 10px;
  box-shadow: 0 10px 25px rgba(16,185,129,0.3); 
  z-index: 1000; 
  transition: all 0.3s;
}

.float-text { 
  max-width: 0; 
  overflow: hidden; 
  white-space: nowrap; 
  font-size: 12px; 
  font-weight: bold; 
  transition: max-width 0.4s; 
}

.whatsapp-float:hover .float-text { 
  max-width: 200px; 
  padding-right: 10px; 
}

/* ==========================================
   PÁGINA TAREAS EXPRESS
   ========================================== */
.page-hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, rgba(0,168,232,0.08), rgba(3,4,94,0.05));
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark-navy);
}

body.dark-mode .page-hero-content h1 {
  color: white;
}

.page-hero-content p {
  color: var(--gray-sub);
  font-size: 16px;
  margin-bottom: 24px;
}

.page-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px;
}

.highlight-card i {
  color: var(--primary);
  margin-bottom: 8px;
}

.page-hero-panel {
  background: linear-gradient(135deg, #03045e, #0077b6);
  color: white;
  border-radius: 24px;
  padding: 28px;
}

.page-hero-panel h3 {
  margin-bottom: 16px;
}

.page-hero-panel .check-list {
  list-style: none;
  margin-bottom: 20px;
}

.page-hero-panel .check-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.detail-section {
  background: rgba(0,168,232,0.03);
}

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

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,168,232,0.12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-cta {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.page-cta h2 {
  margin-bottom: 10px;
  color: var(--dark-navy);
}

body.dark-mode .page-cta h2 {
  color: white;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #020202;
  color: #e5e5e5;
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(150px, 1fr));
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
  margin-bottom: 25px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-brand .logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand .logo i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00a8e8, #03045e);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-brand p {
  max-width: 320px;
  color: #bfcdd6;
  line-height: 1.8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 13px;
}

.footer-column a:hover {
  color: #00a8e8;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.language-selector {
  margin-top: 15px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: #9fb8c9;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================
   RESPONSIVE / MÓVIL
   ========================================== */
@media (max-width: 900px) {
  .hero-grid,
  .express-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-wide {
    grid-column: span 1;
  }

  .nav-links {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    z-index: 150;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .dropdown-menu,
  .dropdown-submenu {
    position: static;
    display: block !important;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-menu li a,
  .dropdown-submenu li a {
    padding-left: 24px;
  }

  .nav-dropdown > a,
  .nav-dropdown-sub > a {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }

  .promo-bar {
    flex-direction: column;
    gap: 4px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .express-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-highlights,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-box,
  .express-box {
    padding: 24px;
  }

  .slide-content h2 {
    font-size: 22px;
  }

  .slide-content p {
    font-size: 13px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .search-box-nav {
    min-width: 0;
  }

  .secondary-navbar {
    position: relative;
  }

  .footer-top {
    padding-bottom: 24px;
  }
}

@media (max-width: 700px) {
  .express-grid,
  .blog-grid,
  .page-highlights,
  .steps-grid,
  .why-grid,
  .dates-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .carousel-dots {
    gap: 6px;
  }

  .slide-badge {
    font-size: 11px;
  }

  .carousel-slide {
    min-height: 300px;
    padding: 12px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .img-card img {
    height: 260px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-links.active {
    padding: 16px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-dropdown > a,
  .nav-dropdown-sub > a {
    padding-left: 0;
  }

  .search-box-nav {
    padding: 10px 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 18px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
  }

  .page-hero-panel,
  .page-cta,
  .contact-form-box,
  .express-box {
    padding: 20px;
  }

  .date-image {
    height: 160px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .mission-hero {
    padding: 60px 16px;
  }

  .story-hero {
    padding: 56px 16px 0;
  }

  .story-cover {
    height: 180px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-intro {
    position: static;
  }

  .story-content,
  .story-closing-box {
    padding: 26px 20px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-social-content {
    padding: 26px 20px;
  }

  .mission-social-content h2 {
    font-size: 26px;
  }

  .section {
    padding: 60px 16px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .nav-actions {
    gap: 6px;
    justify-content: flex-end;
  }

  .search-box-nav {
    width: 100%;
    order: 3;
    min-width: 0;
  }

  .search-box-nav input {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .img-card img {
    height: 280px;
  }

  .search-box {
    padding: 12px 14px;
  }

  .search-box input {
    font-size: 13px;
  }

  .express-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-panel,
  .page-cta {
    padding: 24px;
  }

  .why-grid,
  .dates-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .date-card { flex-direction: column; align-items: stretch; }
  .date-image { width: 100%; height: 180px; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    padding: 12px;
  }

  .float-text {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    position: relative;
  }

  .navbar .logo {
    display: none;
  }

  .nav-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .brand-logo {
    max-height: 42px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }

  .search-box-nav {
    grid-column: 2;
    grid-row: 1;
    order: 1;
    justify-self: end;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 8px;
  }

  .search-box-nav input {
    display: none;
  }

  .mobile-only {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    order: 2;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }

  .nav-actions > .btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 10px 14px;
  }

  .nav-actions > .btn-dark {
    order: 3;
  }

  .nav-actions > .btn-emerald {
    display: none;
  }

  .nav-actions > .btn-login {
    display: none;
  }

  .secondary-navbar {
    display: none;
  }

  .secondary-navbar.menu-open {
    display: block;
  }

  .secondary-navbar.menu-open .nav-links.active {
    position: static;
    max-height: calc(100svh - 120px);
    overflow-y: auto;
    gap: 0;
  }

  .secondary-nav-links > li {
    margin: 0;
  }

  .secondary-nav-links > li > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    line-height: 1.4;
  }

  .secondary-navbar.menu-open .dropdown-menu,
  .secondary-navbar.menu-open .dropdown-submenu {
    position: static;
    display: none !important;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 0 0 0 12px;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .secondary-navbar.menu-open .nav-dropdown.mobile-open > .dropdown-menu,
  .secondary-navbar.menu-open .nav-dropdown-sub.mobile-open > .dropdown-submenu {
    display: block !important;
  }

  .secondary-navbar.menu-open .dropdown-menu li > a,
  .secondary-navbar.menu-open .dropdown-submenu li > a,
  .secondary-navbar.menu-open .dropdown-menu .nav-dropdown-sub > a,
  .secondary-navbar.menu-open .dropdown-submenu .nav-dropdown-sub > a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    line-height: 1.4;
  }

  .mobile-login-link {
    display: block;
  }

  .mobile-login-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 38px;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--primary-hover);
    color: white;
    font-weight: 600;
  }

  .whatsapp-float {
    left: 14px;
    right: auto;
    bottom: 14px;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 45px 14px;
  }

  .hero {
    padding: 30px 0 50px;
  }

  .nav-container {
    padding: 10px 14px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-links.active {
    padding: 16px;
  }

  .nav-links a,
  .footer-column a,
  .section-title p,
  .hero-text p {
    font-size: 14px;
  }

  .slide-content h2 {
    font-size: 1.75rem;
  }

  .slide-content p {
    font-size: 13px;
  }

  .hero-buttons a,
  .btn {
    width: 100%;
    padding: 12px 16px;
  }

  .footer-columns {
    gap: 16px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .date-image {
    height: 150px;
  }

  .img-card img {
    height: 220px;
  }

  .whatsapp-float {
    left: 14px;
    right: auto;
    bottom: 14px;
  }
}

@media (max-width: 600px) {
  .secondary-navbar {
    top: 0;
  }

  body {
    overflow-x: hidden;
  }

  .secondary-navbar.menu-open {
    overflow-x: hidden;
  }

  .whatsapp-float {
    position: fixed;
    display: flex;
    visibility: visible;
    opacity: 1;
    z-index: 1000;
  }

  .secondary-navbar.menu-open .nav-links.active {
    display: block !important;
    gap: 0;
    padding: 8px 14px;
    width: 100%;
  }

  .secondary-navbar.menu-open .nav-links.active > li,
  .secondary-navbar.menu-open .nav-links.active li {
    display: block;
    width: 100%;
  }

  .secondary-nav-links > li > a {
    min-height: 38px;
    padding: 6px 0;
  }

  .secondary-navbar.menu-open .dropdown-menu li > a,
  .secondary-navbar.menu-open .dropdown-submenu li > a,
  .secondary-navbar.menu-open .dropdown-menu .nav-dropdown-sub > a,
  .secondary-navbar.menu-open .dropdown-submenu .nav-dropdown-sub > a {
    min-height: 36px;
    padding: 6px 10px;
  }

  .secondary-navbar.menu-open .dropdown-menu,
  .secondary-navbar.menu-open .dropdown-submenu {
    position: static !important;
    left: auto;
    right: auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    transform: none;
  }

  .nav-actions > .btn {
    display: none;
  }
}
