*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f7fa;
  color:#222;
  overflow-x:hidden;
}

/* NAVBAR */

.custom-navbar{
  background:white;
  padding:15px 0;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img{
  width:220px;
  max-width:100%;
}

.nav-link{
  color:#003f7d !important;
  margin-left:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-link:hover{
  color:#00a2ff !important;
}

/* HERO */

.hero{
  min-height:100vh;
  background:url("img/hero.jpg");
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  top:0;
  left:0;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:clamp(45px,8vw,80px);
  color:white;
  font-weight:700;
}

.hero p{
  color:white;
  font-size:clamp(18px,3vw,24px);
  max-width:750px;
  margin:auto;
  margin-top:20px;
  line-height:1.6;
}

.hero-btn{
  margin-top:35px;
  padding:15px 40px;
  border:none;
  background:linear-gradient(45deg,#003f7d,#00a2ff);
  font-size:18px;
  border-radius:50px;
  transition:0.3s;
}

.hero-btn:hover{
  transform:translateY(-5px);
}

/* TITULOS */

.section-title{
  color:#003f7d;
  font-size:45px;
  font-weight:700;
}

/* SERVICES */

.services{
  background:white;
  padding:100px 0;
}

.service-card{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  height:100%;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  font-size:55px;
  color:#00a2ff;
  margin-bottom:20px;
}

.service-card h3{
  font-size:24px;
  margin-bottom:15px;
  font-weight:600;
}

.service-card p{
  line-height:1.7;
}

/* CARD DESTACADA */

.service-card.featured{
  background:linear-gradient(135deg,#003f7d,#005bb5);
  color:white;
  border:2px solid #00a2ff;
  transform:scale(1.02);
}

.service-card.featured i{
  color:#00d0ff;
}

.service-card.featured h3{
  color:white;
}

.service-card.featured:hover{
  transform:scale(1.05) translateY(-10px);
}

/* ABOUT */

.about{
  padding:100px 0;
}

.about img{
  border-radius:20px;
  width:100%;
}

.about p{
  margin-top:20px;
  line-height:1.9;
  font-size:17px;
}

/* STATS */

.stats{
  background:#003f7d;
  color:white;
  padding:80px 0;
}

.stats h2{
  font-size:55px;
  font-weight:700;
}

.stats p{
  font-size:20px;
  margin-top:10px;
}

/* CONTACTO */

.contact{
  background:white;
  padding:100px 0;
}

.contact-info p{
  font-size:20px;
  margin-bottom:30px;
  line-height:1.7;
}

.contact-info i{
  color:#00a2ff;
  margin-right:10px;
}

/* FORMULARIO */

form{
  display:flex;
  flex-direction:column;
}

form input,
form textarea{
  width:100%;
  padding:16px;
  margin-bottom:20px;
  border:none;
  border-radius:12px;
  background:#f1f5f9;
  transition:0.3s;
  font-size:16px;
}

form input:focus,
form textarea:focus{
  outline:none;
  background:white;
  box-shadow:0 0 10px rgba(0,162,255,0.3);
}

form button{
  background:linear-gradient(45deg,#003f7d,#00a2ff);
  color:white;
  border:none;
  padding:16px;
  border-radius:12px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  position:relative;
}

form button:hover{
  transform:translateY(-3px);
}

#form-message{
  margin-top:20px;
  font-weight:600;
  text-align:center;
}

/* LOADER */

.loader{
  width:22px;
  height:22px;
  border:3px solid white;
  border-top:3px solid transparent;
  border-radius:50%;
  display:none;
  animation:spin 1s linear infinite;
  margin:auto;
}

@keyframes spin{

  100%{
    transform:rotate(360deg);
  }

}

/* WHATSAPP */

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  background:#25d366;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:35px;
  text-decoration:none;
  z-index:999;
  transition:0.3s;
}

.whatsapp:hover{
  transform:scale(1.1);
}

/* FOOTER */

footer{
  background:#001b36;
  color:white;
  text-align:center;
  padding:25px;
}

footer p{
  margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

  .navbar-brand img{
    width:170px;
  }

  .hero{
    padding:140px 20px 80px;
  }

  .hero h1{
    font-size:45px;
  }

  .hero p{
    font-size:18px;
  }

  .section-title{
    font-size:34px;
  }

  .service-card{
    padding:30px 20px;
  }

  .stats h2{
    font-size:40px;
  }

  .contact-info{
    margin-bottom:40px;
  }

  form button{
    width:100%;
  }
.footer-contact {
    background: #0b2d4d;
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.15);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.footer-contact h4 {
    margin-top: 15px;
    font-weight: 600;
}

.footer-contact p {
    margin: 0;
    font-size: 18px;
}

.footer-contact hr {
    border-color: rgba(255,255,255,0.2);
    margin: 40px 0 20px;
}

.copyright {
    font-size: 14px;
    opacity: .8;
}
}