*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f4f6f9;
  color:#222;
}

/* HERO */

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('./img/locutorioUniverso.png');
  background-size:cover;
  background-position:center;

  color:white;
}

/* NAVBAR */

.navbar{
  position:fixed;

  top:0;
  left:0;

  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 10%;

  background:rgba(127, 127, 127, 0.6);

  backdrop-filter:blur(8px);

  z-index:1000;

  transition:all 0.3s ease;
}

.navbar.scrolled{

  background:#676767;

  padding:12px 10%;

  box-shadow:0 5px 15px rgba(130, 130, 130, 0.2);
}

.logo{
  font-size:1.5rem;
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:20px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:.3s;
}

.nav-links a:hover{
  color:#00d26a;
}

/* HERO CONTENT */

.hero-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;

  min-height:80vh;

  padding:20px;
}

.hero-content h1{
  font-size:3rem;
  margin-bottom:20px;
}

.hero-content p{
  font-size:1.2rem;
  max-width:700px;
  margin-bottom:30px;
}

/* BUTTON */

.btn-primary{
  background:#00d26a;
  color:white;

  padding:15px 30px;

  border-radius:50px;

  text-decoration:none;

  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

/* SERVICES */

.services{
  padding:80px 10%;
}

.services h2{
  text-align:center;
  margin-bottom:50px;
  font-size:2.2rem;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:30px;

  border-radius:15px;

  text-align:center;

  box-shadow:0 5px 15px rgba(0,0,0,.08);

  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card i{
  font-size:3rem;
  color:#00d26a;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:15px;
}

/* MAP */

.map-section{
  padding:80px 10%;
  background:white;
  text-align:center;
}

.map-container{
  margin-top:30px;
  overflow:hidden;
  border-radius:20px;
}

/* CONTACT */

.contact{
  padding:80px 10%;
}

.contact h2{
  text-align:center;
  margin-bottom:40px;
}

.contact-box{
  background:white;
  max-width:700px;
  margin:auto;

  padding:40px;

  border-radius:20px;

  box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-box p{
  margin-bottom:15px;
}

/* FOOTER */

footer{
  background:#111;
  color:white;

  text-align:center;

  padding:20px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;

  width:65px;
  height:65px;

  bottom:25px;
  right:25px;

  background:#25d366;
  color:white;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2rem;

  text-decoration:none;

  box-shadow:0 5px 15px rgba(0,0,0,.3);

  z-index:999;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .hero-content h1{
    font-size:2.2rem;
  }

  .hero-content p{
    font-size:1rem;
  }

}

/* ABOUT */

.about{
  padding:80px 10%;
  background:white;
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:20px;
  object-fit:cover;

  box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.about-content h2{
  font-size:2.2rem;
  margin:15px 0 25px;
}

.about-content p{
  margin-bottom:20px;
  line-height:1.8;
  color:#555;
}

.section-tag{
  display:inline-block;

  background:#00d26a;
  color:white;

  padding:8px 18px;

  border-radius:50px;

  font-size:.9rem;
  font-weight:600;
}

/* RESPONSIVE ABOUT */

@media(max-width:900px){

  .about-container{
    grid-template-columns:1fr;
  }

  .about-content{
    text-align:center;
  }

}