/* RESET */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body{
  font-family: Arial, sans-serif;
}

/* NAVBAR */

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;

  background-color: white;

  position: fixed;

  width: 100%;

  top: 0;
  left: 0;

  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

  z-index: 1000;
}

/* LOGO */

.logo{
  font-size: 24px;
  font-weight: bold;

  color: #0f172a;
}

/* MENU */

.menu{
  display: flex;

  gap: 35px;

  list-style: none;
}

.menu a{
  text-decoration: none;

  color: #1e293b;

  font-weight: 600;

  transition: 0.3s;
}

/* HOVER */

.menu a:hover{
  color: #2563eb;
}

/* SECCIONES */

section{
  min-height: 100vh;

  padding: 140px 60px;
}




/* Sección inicio*/

/* HERO */

.hero{
  height: 100vh;

  background-image: linear-gradient(
    rgba(15,23,42,0.6),
    rgba(15,23,42,0.6)
  ),
  url('../img/banner.jpg');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  color: white;
}

/* CONTENIDO HERO */

.hero-content{
  max-width: 700px;
}

.hero h1{
  font-size: 60px;

  margin-bottom: 20px;

  line-height: 1.1;
}

.hero p{
  font-size: 20px;

  margin-bottom: 35px;

  line-height: 1.6;
}

/* BOTÓN */

.btn{
  display: inline-block;

  padding: 15px 35px;

  background-color: #2563eb;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  font-weight: bold;

  transition: 0.3s;
}

.btn:hover{
  background-color: #1d4ed8;
}

/* fin de Sección inicio*/