/* Paleta basada en el logo */
:root {
  --azul-claro: #e9f0f6;
  --azul-oscuro: #111a23;
  --blanco: #FFFFFF;
  --gris-claro: #CCCCCC;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: var(--blanco);
  line-height: 1.6;
  margin: 0;
}
header {
  background-color: #11111100;
  color: var(--blanco);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    background: #CCCCCC;
    border-radius: 50%;
    padding: .2rem;
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}



nav a {
  text-decoration: none;
  color: var(--verde-oscuro);
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--blanco);
}

/*RESPONSIVE DE NAV*/

@media screen and (max-width: 1200px) {

  .logo {
    background: #CCCCCC;
    border-radius: 50%;
    padding: .2rem;
    height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: .5rem;
}



nav a {
  text-decoration: none;
  color: var(--verde-oscuro);
  font-weight: bold;
  transition: color 0.3s;
  font-size: .5rem;
}

nav a:hover {
  color: var(--blanco);
}

  
}
.video-bg {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

/* VIDEO */
.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* CONTENIDO */
.contenido{
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}
.contenido-dos{
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contenido-dos h1{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.contenido-dos h1 img{
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    margin-inline: 2rem;
    border: .3rem solid #fff;
}
@media screen and (max-width: 1200px) {
    .contenido-dos h1 img{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-inline: .5rem;
    border: .3rem solid #fff;
}
}
.actions{
    margin-top: 2rem;
}
.btn-principal {
  display: inline-block;
  background-color: var(--blanco);
  color: var(--azul-oscuro);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  margin-inline: 1rem;
  margin-block: 1rem;
}

.btn-principal:hover {
  background-color: #9e9e9e;
}
.btn-secundario {
  display: inline-block;
  background-color: var(--azul-oscuro);
  color: var(--blanco);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  border: .1rem solid #ffffff42;
  margin-inline: 1rem;
  margin-block: 1rem;
}

.btn-secundario:hover {
  background-color: #324a63;
}

@media screen and (max-width: 1200px) {
    .btn-principal {
  display: inline-block;
  background-color: var(--blanco);
  color: var(--azul-oscuro);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  margin-inline: .5rem;
  margin-block: .5rem;
}

.btn-secundario {
  display: inline-block;
  background-color: var(--azul-oscuro);
  color: var(--blanco);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  border: .1rem solid #ffffff42;
  margin-inline: .5rem;
  margin-block: .5rem;
}

}
/* OVERLAY OSCURO */
.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #111a2380, #111);
  z-index: 1;
}

/* 📱 MOBILE FIRST */
@media (max-width: 768px) {
  .video-bg {
    height: 95vh;
  }

  .contenido h1,
  .contenido-dos h1 {
    font-size: 1.8rem;
  }
  .contenido h2,
  .contenido-dos h2 {
    font-size: 1.25rem;
  }

  .contenido p, 
  .contenido-dos p {
    font-size: .75rem;
    padding-inline: 2rem;
    margin-bottom: 1rem;
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  font-size: 0.9rem;
  color: var(--gris-claro);
}