h1{
    color: blue;
}

h2{
    color: blue;
}

.arriba {
  padding-left: 10%;
  display: flex;
  align-items: baseline;
  gap: 40px;
  justify-content: space-between; 
}

#derecha {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
}

#derecha h2, #derecha p{
    margin: 0%;
}

.izquierda {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

.navegador{
    display: flex;
    justify-content: center;
    list-style: none;
}

.menu {
  background-color: #0a1628;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0 10%;
  display: flex;
}

.menu ul li a {
  display: block;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu ul li a:hover {
  background-color: #1a3a6b;
}

.menu ul li a .activo {
  background-color: #007bff;
}

.hero {
  display: flex;
  align-items: center;
  padding: 40px 8%;
  min-height: 420px;
}

.hero-imagen {
  flex: 1;
}

.hero-imagen img {
  width: 100%;
  max-width: 480px;
  display: block;
}

.hero-texto {
  flex: 1;
}

.hero-texto h2 {
  font-size: 36px;
  color: #0a1628;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-texto h2 span {
  color: #1a6fd4;
}

.hero-texto p {
  font-size: 16px;
  color: gray;
  margin-bottom: 28px;
}

.btn-hero {
  background-color: #1a6fd4;
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.btn-hero:hover {
  background-color: #1558b0;
}

.servicios {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, #5b9ff5 0%, #1a6fd4 50%, #0d3fa6 100%);
  padding: 50px 8%;
  border-radius: 12px;
  margin: 20px 5%;
}

.card-servicio {
  flex: 1;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.card-servicio:last-child {
  border-right: none;
}

.icono {
  background-color: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icono img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.card-servicio h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.card-servicio p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.card-servicio a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.card-servicio a:hover {
  text-decoration: underline;
}
.cta {
  display: flex;
  gap: 20px;
  padding: 40px 8%;
  background-color: #f5f7fa;
}

.cta-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e0e6f0;
}

.cta-icono {
  background: linear-gradient(135deg, #5b9ff5, #1a6fd4);
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icono img {
  width: 36px;
  filter: brightness(0) invert(1);
}

.cta-texto h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}

.cta-texto p {
  font-size: 14px;
  color: gray;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cta-texto a {
  color: blue;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.cta-texto a:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: rgb(5, 3, 35);
  padding: 20px 8%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

#izquierdas{
    flex: 0%;
}



 