html, body {
    overflow-x: hidden;
    width: 100%;
}

/* PARA QUE NO LO CUBRA EL HEADER */
body {
  font-family: Arial;
  padding-top: 90px;
}

/* HEADER PRO */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 55px;
}

/* MENU CENTRO */
.nav-center a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-center a:hover {
  color: #2563eb;
}

/* ICONOS */
.nav-icons a {
  margin-left: 12px;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
}

.nav-icons a:hover {
  transform: scale(1.2);
  color: #2563eb;
}

/* HERO */
.hero {
  min-height: 80vh;
  background: url("images/SliderInicio1.jpg")
    center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
}

.hero .btn {
  padding: 10px 25px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

/* BENEFICIOS */

.beneficio {
  background: white;

  padding: 35px 25px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;

  height: 100%;
}

.beneficio:hover {
  transform: translateY(-8px);
}

.beneficio i {
  font-size: 55px;

  color: #2563eb;

  margin-bottom: 20px;

  display: block;
}

.beneficio h4 {
  font-weight: bold;

  margin-bottom: 15px;
}

.beneficio p {
  color: #666;

  margin: 0;
}

/* GALERÍA */

.galeria-img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

  transition: 0.4s;

  cursor: pointer;
}

.galeria-img:hover {
  transform: scale(1.05);
}

/* COMO TRABAJAMOS */

.paso {
  background: white;

  padding: 35px 25px;

  border-radius: 15px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  height: 100%;

  transition: 0.3s;
}

.paso:hover {
  transform: translateY(-8px);
}

.numero {
  width: 70px;

  height: 70px;

  background: #2563eb;

  color: white;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 28px;

  font-weight: bold;

  margin: auto;

  margin-bottom: 20px;
}

.paso h4 {
  font-weight: bold;

  margin-bottom: 15px;
}

.paso p {
  color: #666;

  margin: 0;
}

/* TESTIMONIOS */

.testimonio {
  background: white;

  padding: 35px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  text-align: center;

  transition: 0.3s;

  height: 100%;
}

.testimonio:hover {
  transform: translateY(-8px);
}

.estrellas {
  font-size: 28px;

  color: #ffc107;

  margin-bottom: 20px;
}

.testimonio p {
  font-style: italic;

  color: #666;

  margin-bottom: 20px;
}

.testimonio h5 {
  font-weight: bold;

  margin: 0;
}

/* QUIÉNES SOMOS */

#nosotros img {
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#nosotros h2 {
  font-size: 42px;
}

#nosotros p {
  color: #555;

  line-height: 1.8;
}

/* CONTACTO */

.contacto {
  background: #f8f9fa;
}

.contact-card {
  background: white;

  padding: 35px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.contact-card p {
  font-size: 18px;

  margin-bottom: 18px;
}

.contact-card i {
  margin-right: 8px;
}

/* FOOTER */

.footer {
  background: #0f172a;

  color: white;

  padding: 60px 0 25px;
}

.footer-logo {
  height: 65px;
}

.footer h4 {
  margin-bottom: 20px;

  font-weight: bold;
}

.footer p {
  color: #cbd5e1;
}

.footer-links {
  list-style: none;

  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-redes a {
  color: white;

  font-size: 24px;

  margin-right: 15px;

  transition: 0.3s;
}

.footer-redes a:hover {
  color: #25d366;
}

.footer hr {
  border-color: #334155;

  margin: 35px 0;
}

section {
  scroll-margin-top: 100px;
}

/* ========================= */
/* RESPONSIVE PARA CELULAR */
/* ========================= */

@media (max-width: 768px){

    body{
        padding-top:80px;
    }

    .navbar-custom{
        padding:10px 15px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .logo img{
        height:42px;
    }

    .nav-center{
        display:none;
    }

    .nav-icons{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .nav-icons a{
        margin:0;
        font-size:24px;
    }

    .hero{
        min-height:70vh;
        padding:20px;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero .btn{
        display:block;
        width:100%;
        margin:10px 0;
    }

    .hero .btn.ms-2{
        margin-left:0 !important;
    }
}