/* =============================================
   ESTILOS GLOBALES - CSS SIN TAILWIND
   ============================================= */

/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos del body */
body {
  background-color: #FAFAFA;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
}

/* =============================================
   HEADER DE ATENCIÓN CORPORATIVA
   ============================================= */

.corporativo-header {
  position: relative;
  height: 45vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay del header */
.corporativo-header-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Contenido del header */
.corporativo-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 3rem;
}

/* Etiqueta superior */
.corporativo-header-label {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

/* Título principal */
.corporativo-header-title {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .corporativo-header-title {
    font-size: 3rem;
  }
}

/* Texto solo para lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================
   CONTENIDO PRINCIPAL
   ============================================= */

.corporativo-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
  flex-grow: 1;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Asegurar que el contenido principal ocupe el espacio disponible */
#main-content {
  flex: 1;
}