* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body{
	background-color: #f8fafc;
  color: #0f172a;
}

/* HEADER GLASS */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  transition: 0.3s;
}

header.top {
  background: linear-gradient(
    to bottom,
    rgba(0, 26, 77, 0.9),
    rgba(0, 26, 77, 0.1),
    transparent
  );
}

header.scrolled {
  background: rgba(255,255,255,0.85);
}

header.scrolled nav a,
header.scrolled .logo-text {
  color: #002168;
}

.logo{
  height: 40px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: white;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

@media(max-width: 768px) {
  .logo-text {
    font-size: 14px;
  }
}

/* MINI HERO */
.mini-hero {
  height: 30vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(to bottom, #001a4d, #f8fafc);
  color: white;
  position: relative;
  overflow: hidden;
}

.mini-hero h1 {
  z-index: 2;
  font-size: 32px;
}

.logo{
  height: 40px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: white;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

@media(max-width: 768px) {
  .logo-text {
    font-size: 14px;
  }
}

/* OLA */
.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.7;
}

/* VALPORES */
.values {
  padding: 100px 40px;
  text-align: center;
  background: #f8fafc;
}

.values h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: #1e3a8a;
}

/* fila */
.values-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* cada item */
.value {
  width: 52%;
  text-align: center;
}

/* círculo */
.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* colores */
.orange { background: #fed7aa; }
.green { background: #bbf7d0; }
.blue { background: #bfdbfe; }

/* línea vertical */
.line {
  width: 2px;
  height: 50px;
  background: #1e3a8a;
  margin: 10px auto;
}

/* texto */
.values-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}

/* base */
.value {
  width: 550px;
  text-align: center;
}

/* tarjetas suaves */
.value.big {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* círculos más vivos */
.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* línea */
.line {
  width: 2px;
  height: 40px;
  background: #1e3a8a;
  margin: 15px auto;
}

/* títulos */
.value h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #002168;
}

/* texto corto (historia) */
.value p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* texto largo (misión/visión) */
.value.big p {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.value.big:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* CONTACT */

/* CONTACTO */
.contact {
  padding: 100px 60px;
  background: #f8fafc;
}

/* contenedor */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* info */
.contact-info {
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #002168;
}

.contact-info p {
  margin-bottom: 20px;
  color: #475569;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  color: #002168;
}

.info-item span {
  color: #475569;
}

/* map */
.contact-map {
  background: rgba(255,255,255,0.7);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-map h2 {
  margin-bottom: 15px;
  color: #002168;
}

/* mapa bonito */
.contact-map iframe {
  border-radius: 12px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* icono grande */
.big-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* items */
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* texto */
.info-item span {
  color: #475569;
  margin: 15px 0;
}

/* hover más pro */
.info-item:hover {
  transform: translateX(5px);
  transition: 0.3s;
}