	:root {
  --primary: #005fa8;
  --primary-soft: #e6f1fb;
  --bg-light: #f5f7fb;
  --text-main: #14213d;
  --text-soft: #5c6679;
  --white: #ffffff;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.07);
  --radius-lg: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #f7f9fc;
}

/* CONTENEDOR GENERAL */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ──────────────────────────────────────────────── */
/* ZÓCALO SUPERIOR – OPCIÓN A                      */
/* ──────────────────────────────────────────────── */

.topbar {
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

/* === LOGO: ancho y alto controlados correctamente === */
.logo-box,
.logo-container {
  width: 1000px;         /* ← ANCHO REAL DEL LOGO (ajustalo a gusto) */
  flex: 0 0 25%;      /* ← evita que flex lo agrande */
  max-width: 1200px;     /* ← refuerzo total del ancho */
}

.logo-box img,
.logo-container img {
  width: 100%;        
  height: auto;
  max-height: 200px;     /* ← tu altura ya funciona */
  object-fit: contain;
  display: block;
}

/* Menú a la derecha */
.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
}

/* ──────────────────────────────────────────────── */
/* HERO                                             */
/* ──────────────────────────────────────────────── */

.hero {
  /* Fondo: foto de oficina + velo blanco/azulado encima para que se lea el texto */
  background-image:
    linear-gradient(120deg, rgba(230, 241, 251, 0.92), rgba(255, 255, 255, 0.38)),
    url("fondo-oficina-blur.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}


.hero-content {
  margin-top: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1rem;
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────────────────────────────────────────────── */
/* BOTONES                                          */
/* ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.btn.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(0, 95, 168, 0.25);
}

.btn.secondary:hover {
  background: var(--primary-soft);
}

.btn.full {
  width: 100%;
}

/* ──────────────────────────────────────────────── */
/* SECCIONES Y LAYOUT                               */
/* ──────────────────────────────────────────────── */

.section {
  padding: 70px 0;
}

.bg-light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section p {
  color: var(--text-soft);
  line-height: 1.7;
}

/* Layout 2 columnas */
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: flex-start;
}

/* CARDS */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Card de enfoque */

.highlight ul {
  padding-left: 18px;
  margin: 0;
}

.highlight li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

/* Grid de servicios */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

/* CONTACTO */

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d3d8e4;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--primary);
  border-color: var(--primary);
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* Formulario de Google embebido */
.google-form-wrapper {
    margin-top: 24px;
}

.google-form-wrapper iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

/* Responsive especial para Google Forms en celular */
@media (max-width: 700px) {
    .google-form-wrapper iframe {
        height: 1500px;
    }
}

/* FOOTER */

/* FOOTER */

.footer {
  background: #0f1929;
  color: #d9e2f4;
  font-size: 0.85rem;
  padding: 16px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer a {
  color: #d9e2f4;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ANIMACIONES */

.scroll-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────── */
/* RESPONSIVE                                       */
/* ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
  }

  /* --- LOGO FULL WIDTH EN CELULAR --- */
.logo-box {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.logo-box img {
    width: 80%;      /* ajustá entre 70% y 100% según prefieras */
    height: auto;
    max-height: none;
    object-fit: contain;
}


  .hero-content {
    margin-top: 30px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

/* Fondo general con imagen de oficina desenfocada */
body {
  background-image: url("fondo-oficina.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}


/* El zócalo superior sigue siendo sólido y limpio */
.topbar {
  background-color: #ffffff;
}

/* Capa blanca suave para que todo el texto se lea bien */
main {
  background-color: rgba(255, 255, 255, 0.92);
}

/* Por si alguna sección pisa el fondo, la unificamos */
.section {
  background-color: transparent;
}html {
  scroll-behavior: smooth;
}

#servicios,
#reclutamiento,
#contacto,
#quienes-somos,
#legal {
  scroll-margin-top: 80px;
}


