@charset "utf-8";
/* CSS Document */

    /* ── RESET & BASE ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #1a1a2e;
      background: #ffffff;
      overflow-x: hidden;
    }

    /* ── VARIABLES ── */
    :root {
      --blue:        #1B5096;
      --blue-dark:   #0e3264;
      --blue-light:  #2a6abf;
      --blue-pale:   #e8f0fb;
      --green:       #5BA632;
      --green-dark:  #3d7420;
      --green-light: #72c43e;
      --green-pale:  #eaf3de;
      --white:       #ffffff;
      --off-white:   #f4f7fc;
      --text:        #1a1a2e;
      --text-mid:    #4a5568;
      --text-light:  #8899aa;
      --border:      rgba(27, 80, 150, 0.12);
      --shadow-sm:   0 2px 12px rgba(27,80,150,0.08);
      --shadow-md:   0 8px 32px rgba(27,80,150,0.12);
      --radius:      10px;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── UTILITIES ── */
    .container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 5rem 0; }
    .section--alt { background: var(--off-white); }
    .section--dark { background: var(--blue-dark); }

    .tag {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      border-left: 3px solid var(--green);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .section-body {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 680px;
    }
    .section-body p { margin-bottom: 1rem; }

    /* ── LANGUAGE TOGGLE ── */
    .lang-es .en, .lang-es .pt,
    .lang-en .es, .lang-en .pt,
    .lang-pt .es, .lang-pt .en { display: none !important; }

    /* ── NAVBAR ── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      height: 68px;
      display: flex;
      align-items: center;
    }
    .navbar .container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo svg { width: 38px; height: 38px; flex-shrink: 0; }
    .nav-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }
    .nav-brand .b { color: var(--blue); }
    .nav-brand .g { color: var(--green); }

    .nav-right { display: flex; align-items: center; gap: 2rem; }
    .nav-links { display: flex; gap: 1.8rem; align-items: center; }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-mid);
      transition: color 0.2s;
      letter-spacing: 0.2px;
    }
    .nav-links a:hover { color: var(--blue); }

    .lang-btns { display: flex; gap: 5px; }
    .lang-btn {
      background: none;
      border: 1px solid var(--border);
      padding: 4px 9px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      color: var(--text-mid);
      font-family: 'Barlow', sans-serif;
      transition: all 0.2s;
    }
    .lang-btn:hover { border-color: var(--blue); color: var(--blue); }
    .lang-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

    .nav-cta {
      background: var(--green);
      color: white;
      padding: 9px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--green-dark); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(138deg, #0b2a5e 0%, #1B5096 52%, #1e6db5 100%);
      padding: 5rem 0;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: 0.06;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-light);
      flex-shrink: 0;
    }
    .hero-eyebrow span {
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 58px;
      font-weight: 700;
      color: white;
      line-height: 1.02;
      margin-bottom: 1.3rem;
      letter-spacing: -0.5px;
    }
    .hero h1 .accent { color: var(--green-light); }
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      margin-bottom: 2.2rem;
      max-width: 500px;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--green);
      color: white;
      padding: 14px 30px;
      border-radius: 7px;
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: var(--green-dark); }
    .btn-ghost {
      background: transparent;
      color: white;
      padding: 13px 28px;
      border-radius: 7px;
      font-size: 15px;
      font-weight: 600;
      border: 1.5px solid rgba(255,255,255,0.35);
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      transition: all 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
      margin: 0 auto;
    }
    .stat-item {
      padding: 2rem 1.5rem;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 46px;
      font-weight: 700;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-num .g { color: var(--green); }
    .stat-label {
      font-size: 13px;
      color: var(--text-mid);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ── HERO PHOTO ── */
    .hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }
    .hero-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(138deg, rgba(10,30,80,0.87) 0%, rgba(27,80,150,0.78) 55%, rgba(14,50,100,0.6) 100%);
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    /* Imagen de ruta global / mapa */
    .about-visual {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .about-visual img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      object-position: center;
    }
    .about-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--blue);
      padding: 14px 20px;
    }
    .about-badge-title {
      color: white;
      font-size: 14px;
      font-weight: 700;
    }
    .about-badge-sub {
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      margin-top: 2px;
    }

    /* ── SERVICE CARDS CON FOTO ── */
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .service-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .svc-photo {
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .svc-body {
      padding: 1.5rem;
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .svc-icon {
      width: 52px; height: 52px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .svc-icon.blue { background: var(--blue-pale); }
    .svc-icon.green { background: var(--green-pale); }
    .svc-icon.teal { background: #e1f5ee; }
    .svc-icon svg { width: 26px; height: 26px; }
    .svc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--text);
      margin-bottom: 6px;
    }
    .svc-cert {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 3px;
      margin-bottom: 0.8rem;
    }
    .svc-cert.iata { background: var(--blue-pale); color: var(--blue); }
    .svc-cert.pna  { background: var(--green-pale); color: var(--green-dark); }
    .svc-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
    .svc-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 1rem;
    }
    .svc-tag {
      background: var(--off-white);
      border: 1px solid var(--border);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
      color: var(--text-mid);
    }

    /* ── QUOTE ── */
    .quote-wrap {
      text-align: center;
      padding: 5rem 2rem;
    }
    .quote-mark {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 100px;
      color: var(--green-light);
      line-height: 0.6;
      margin-bottom: 1.5rem;
      opacity: 0.55;
    }
    .quote-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 38px;
      font-weight: 600;
      color: white;
      font-style: italic;
      line-height: 1.2;
      max-width: 560px;
      margin: 0 auto 1rem;
    }
    .quote-author {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 600;
    }

    /* ── WHY ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 2.5rem;
    }
    .why-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.4rem;
      border-left: 3px solid var(--green);
      border-top: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .why-icon {
      width: 40px; height: 40px;
      min-width: 40px;
      border-radius: 8px;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-icon svg { width: 18px; height: 18px; }
    .why-title {
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      margin-bottom: 5px;
    }
    .why-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3.5rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    .contact-intro {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 1.8rem;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 1.2rem;
    }
    .citem-icon {
      width: 38px; height: 38px;
      min-width: 38px;
      border-radius: 8px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .citem-icon svg { width: 16px; height: 16px; }
    .citem-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin-bottom: 3px;
    }
    .citem-value {
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
      line-height: 1.6;
    }
    .citem-value a { color: var(--blue); }
    .citem-value a:hover { text-decoration: underline; }

    /* WhatsApp link */
    .wa-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #1a8a3a !important;
      font-weight: 600;
    }
    .wa-link svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* Form */
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
    }
    .form-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1.5rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-group { margin-bottom: 1rem; }
    .form-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--text-mid);
      margin-bottom: 6px;
    }
    .form-input {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #cdd8e8;
      border-radius: 6px;
      font-size: 14px;
      font-family: 'Barlow', sans-serif;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
    }
    .form-input:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(27,80,150,0.1);
    }
    .form-input::placeholder { color: var(--text-light); }
    textarea.form-input { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%;
      background: var(--blue);
      color: white;
      padding: 13px;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      transition: background 0.2s;
      letter-spacing: 0.3px;
    }
    .form-submit:hover { background: var(--blue-dark); }
    .form-note {
      font-size: 12px;
      color: var(--text-light);
      text-align: center;
      margin-top: 10px;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      color: var(--green-dark);
    }
    .form-success svg { width: 40px; height: 40px; margin: 0 auto 1rem; }
    .form-success p { font-size: 15px; font-weight: 600; }

    /* ── FOOTER ── */
    .footer {
      background: #111827;
      padding: 3.5rem 0 1.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      max-width: 960px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .footer-brand-name .b { color: #6fa8e8; }
    .footer-brand-name .g { color: var(--green-light); }
    .footer-tagline {
      font-size: 13px;
      color: rgba(255,255,255,0.38);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .footer-certs { display: flex; gap: 6px; flex-wrap: wrap; }
    .fcert {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.5px;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: 13px;
      color: rgba(255,255,255,0.38);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--green-light); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 960px;
      margin: 0 auto;
      padding: 1.5rem 2rem 0;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.22);
    }
    .footer-legal {
      font-size: 12px;
      color: rgba(255,255,255,0.22);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hero h1 { font-size: 40px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .about-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .section-title { font-size: 30px; }
      .quote-text { font-size: 28px; }
    }


