/* ==========================================================================
   TRANSPORTE DUQUE USA - ESTILOS PRINCIPALES
   Landing Page Corporativa de Carga Internacional
   ========================================================================== */

:root {
  --primary-gold: #D9900C;
  --primary-gold-hover: #C07E09;
  --primary-gold-light: #FFF8EB;
  --primary-dark: #111111;
  --primary-dark-card: #1A1A1A;
  --topbar-bg: #0B121C;
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --text-light: #9CA3AF;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-light: #E5E7EB;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.12);
  --container-max: 1240px;
}

*, *::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(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ----------------------------------------
   BOTONES Y COMPONENTES
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 144, 12, 0.35);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #2D2D2D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

/* ==========================================================================
   BARRA SUPERIOR (TOP BAR)
   ========================================================================== */
.top-bar {
  background-color: var(--topbar-bg);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  padding: 9px 0;
  position: relative;
  z-index: 1002;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-bar-item a {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: var(--primary-gold);
}

.top-bar-icon {
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-icon svg {
  width: 17px;
  height: 17px;
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-gold);
  color: #111111;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.top-bar-btn svg {
  width: 15px;
  height: 15px;
  color: #111111;
}

.top-bar-btn:hover {
  background-color: #F0A31B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 144, 12, 0.4);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo img {
  height: 52px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary-gold);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--primary-dark);
  border-radius: 50%;
  transition: var(--transition);
}

.header-social a:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 40px 0 60px;
  overflow: hidden;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-title .highlight-gold {
  color: var(--primary-gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-subtitle strong {
  color: var(--primary-gold);
  font-weight: 800;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge-item svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--primary-gold);
}

.trust-badge-item span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
  line-height: 1.25;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   SECCIÓN: SOBRE NOSOTROS & 3 CARDS
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.65fr;
  gap: 40px;
  align-items: center;
}

.about-text-col .section-title {
  margin-bottom: 20px;
}

.about-text-col p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text-col .btn {
  margin-top: 10px;
}

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

.feature-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  background: var(--primary-dark);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card-img {
  height: 240px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.06);
}

.feature-card-content {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  padding: 18px 16px;
  text-align: left;
  flex-grow: 1;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-card-icon {
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-gold);
}

.feature-card-desc {
  font-size: 0.78rem;
  color: #D1D5DB;
  line-height: 1.45;
}

/* ==========================================================================
   SECCIÓN: NUESTROS SERVICIOS (8 ITEMS)
   ========================================================================== */
.services-section {
  padding: 70px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.services-header {
  margin-bottom: 45px;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 16px;
}

.service-item-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-item-card:hover .service-icon-box {
  background-color: var(--primary-gold);
  color: #FFFFFF;
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.35;
}

/* ==========================================================================
   SECCIÓN: COBERTURA (MAPA GLOBAL)
   ========================================================================== */
.coverage-section {
  position: relative;
  background-color: #0c1a2d;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.coverage-bg-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(1.2) contrast(1.1);
  z-index: 1;
}

.coverage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 50%, rgba(12, 26, 45, 0.4) 0%, rgba(12, 26, 45, 0.85) 100%);
  z-index: 2;
}

/* SVG Flight Routes */
.coverage-routes-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.flight-line {
  stroke: rgba(217, 144, 12, 0.65);
  stroke-width: 2;
  stroke-dasharray: 6, 6;
  fill: none;
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.hub-pin {
  position: absolute;
  top: 36%;
  left: 31%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(217, 144, 12, 0.8);
  color: var(--primary-gold);
  font-weight: 900;
  font-size: 0.85rem;
}

.pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.coverage-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.coverage-left-info {
  max-width: 420px;
  color: #FFFFFF;
}

.coverage-left-info .section-tag {
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.coverage-left-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}

.coverage-left-info p {
  color: #E2E8F0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.coverage-country-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  width: 260px;
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.country-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.country-more-link {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.country-more-link:hover {
  color: var(--primary-gold);
}

/* ==========================================================================
   SECCIÓN: CÓMO FUNCIONA (5 PASOS)
   ========================================================================== */
.how-it-works-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.how-it-works-header {
  margin-bottom: 50px;
}

.how-steps-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 18px 24px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background-color: var(--primary-dark);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  border: 3px solid #FFFFFF;
}

.step-icon {
  margin: 10px auto 14px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.step-icon svg {
  width: 36px;
  height: 36px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.step-arrow {
  color: #9CA3AF;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   SECCIÓN: BANNERS MULTI-BLOQUE (CTA & SOPORTE 24/7)
   ========================================================================== */
.support-cta-section {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  overflow: hidden;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1fr 1.65fr;
  align-items: stretch;
  min-height: 270px;
}

.banner-img-block {
  overflow: hidden;
  height: 100%;
}

.banner-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.banner-img-block:hover img {
  transform: scale(1.05);
}

.banner-cta-block {
  background-color: #0E0E0E;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.banner-cta-icon {
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.banner-cta-icon svg {
  width: 32px;
  height: 32px;
}

.banner-cta-block h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.banner-cta-block p {
  font-size: 0.8rem;
  color: #A3A3A3;
  line-height: 1.45;
  margin-bottom: 20px;
}

.banner-support-block {
  background-color: #0E0E0E;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: center;
  overflow: hidden;
}

.support-info-side {
  padding: 36px 24px;
}

.support-icon {
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.support-icon svg {
  width: 30px;
  height: 30px;
}

.support-info-side h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.support-info-side p {
  font-size: 0.78rem;
  color: #A3A3A3;
  line-height: 1.4;
  margin-bottom: 14px;
}

.support-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--primary-gold);
  transition: var(--transition);
}

.support-phone-link:hover {
  color: #FFFFFF;
}

.support-photo-side {
  height: 100%;
  min-height: 270px;
}

.support-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0B0B0B;
  color: #AAAAAA;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  background-image: radial-gradient(circle at 90% 50%, rgba(217, 144, 12, 0.04) 0%, transparent 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-brand .footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #888888;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #888888;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: #AAAAAA;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: #666666;
}

/* ==========================================================================
   MODAL DE COTIZACIÓN
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.is-open .modal-container {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--primary-dark);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.modal-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary-gold);
}

.modal-body {
  padding: 28px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 144, 12, 0.15);
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MÓVILES)
   ========================================================================== */
@media (max-width: 1024px) {
  .top-bar-left {
    gap: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust-badges {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-wrap {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-text-col {
    text-align: center;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .top-bar-item.hide-tablet {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar-left .top-bar-item:not(.phone-item) {
    display: none;
  }
  .top-bar-container {
    justify-content: space-between;
  }
  .top-bar-btn {
    padding: 6px 14px;
    font-size: 0.72rem;
  }
  .header-nav,
  .header-social {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-content {
    flex-direction: column;
    text-align: center;
  }
  .coverage-left-info {
    max-width: 100%;
  }
  .how-steps-flow {
    flex-direction: column;
    gap: 28px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .banner-support-block {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .top-bar-container {
    gap: 8px;
  }
  .top-bar-item {
    font-size: 0.76rem;
  }
  .top-bar-btn {
    padding: 6px 10px;
    font-size: 0.68rem;
    letter-spacing: 0;
  }
  .top-bar-btn span.btn-text-long {
    display: none;
  }
  .top-bar-btn span.btn-text-short {
    display: inline;
  }
}

@media (min-width: 481px) {
  .top-bar-btn span.btn-text-short {
    display: none;
  }
}
