/* ============ ESTILOS GENERALES PARA TODA LA PAGINA ============ */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: arial, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: white;
  text-decoration: none;
}

.content{
    width: 85%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.title-section{
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 40px;
}

/* ============ ESTILOS PARA LOS CONTENIDOS DEL HEADER ============ */
header {
    width: 100%;
  background-color: #0f110b;
  color: white;
  position: fixed;
  z-index: 100;
}
.navbar {
    width: 85%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    height: 80%;
}
.navbar nav {
  display: flex;
  gap: 10px;
  color: white;
}

.navbar nav a{
    display: block;
    padding: 5px 12px;
    border-radius: 5px;
}

.navbar nav a:hover{
    color: black;
    background-color:#ffbf00;
}

/* ============ ESTILOS PARA LOS CONTENIDOS DEL MAIN ============ */

main{
    background-color: #7694de;
}
/* SECCION HERO */

.hero{
    background-image: url("../img/concierto con animales.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.hero::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #0c0b1188;
    top: 0;
    left: 0;
}

.hero-content {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: white;
  gap: 40px;
}

.hero-content h1{
    color: #ffbf00;
    font-size: 64px;
    
}

.hero-content h3{
    font-size: 32px;
}

.hero-content form{
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.hero-content input, button{
    max-width: 450px;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 10px;
}

.hero-content input{
    background-color: #f4ebb2;
}

.hero-content button{

    width: 85%;
    cursor: pointer;
    background: white;
    margin-top: 20px;
}
.hero-content button:hover{
    color: black;
    background-color: #ffbf00;
}



/* INICIO SECCION FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.feature-video{
    max-width: 500px;
    width: 100%;
}

.feature-video img{
    width: 100%;
}
/* INICIO SECCION CUSTOMERS */
.customers{
   background-color: #ffe186;
    
}

.contenedor-cursos{
    display: flex;
    align-items: center;
    gap: 10px;
}

.tarjeta-curso{
    max-width: 300px;
}

.tarjeta-curso img{
    width: 100%;
}

.tarjeta-curso button{
    width: 100%;
    height: 40px;
    border: none;
}

/* INICIO SECCION SOBRE NOSOTROS */

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    width: 85%;
    max-width: 500px;
    margin: 0 auto;
}

.text{
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 15px;
}

.circulo{
    width: 100%;
    background-color: #eee;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ ESTILOS PARA LOS CONTENIDOS DEL FOOTER ============ */

footer {
  background: #d3e7c6;
  text-align: center;
  padding: 1rem;
}
