*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f7fafd;
  color:#0b2545;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:115px;
  padding:0 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#ffffff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  z-index:1000;
}

.logo{
  height: 260px;px;
  width:auto;
  object-fit:contain;
  display:block;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  text-decoration:none;
  color:#0b3b82;
  font-weight:900;
  font-size:16px;
}

nav a:hover{
  color:#17c6e6;
}

.nav-btn{
  background:linear-gradient(135deg,#17c6e6,#0b82c8);
  color:white;
  text-decoration:none;
  padding:17px 32px;
  border-radius:45px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(23,198,230,.25);
}

.hero{
  min-height:100vh;
  padding:180px 8% 80px;
  display:flex;
  align-items:center;
  background:
  linear-gradient(90deg, rgba(7,45,99,.95), rgba(11,59,130,.75), rgba(11,59,130,.18)),
  url("banner.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:white;
}

.hero-text{
  max-width:680px;
}

.hero h1{
  font-size:76px;
  line-height:1.05;
  margin-bottom:25px;
  font-weight:900;
}

.hero h1 span{
  color:#17c6e6;
}

.hero p{
  font-size:23px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-features{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.hero-features span{
  background:rgba(255,255,255,.16);
  padding:13px 20px;
  border-radius:45px;
  font-weight:800;
  backdrop-filter:blur(8px);
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  padding:18px 36px;
  border-radius:45px;
  font-weight:900;
  transition:.3s;
}

.primary{
  background:linear-gradient(135deg,#17c6e6,#0b82c8);
  color:white;
}

.primary:hover{
  transform:translateY(-3px);
}

.whatsapp-btn{
  background:#2ed95f;
  color:white;
}

.whatsapp-btn:hover{
  background:#22bd50;
  transform:translateY(-3px);
}

.services{
  padding:100px 8%;
  text-align:center;
  background:#f7fafd;
}

.mini-title{
  color:#17c6e6;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:900;
  margin-bottom:10px;
}

h2{
  font-size:44px;
  color:#0b3b82;
  margin-bottom:15px;
}

.section-text{
  font-size:19px;
  color:#64748b;
  margin-bottom:55px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:28px;
}

.card{
  background:white;
  padding:38px 25px;
  border-radius:26px;
  box-shadow:0 22px 50px rgba(11,59,130,.10);
  border-top:6px solid #17c6e6;
  transition:.3s;
  font-size:38px;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(11,59,130,.18);
}

.card h3{
  color:#0b3b82;
  font-size:22px;
  margin:18px 0 12px;
}

.card p{
  font-size:16px;
  color:#64748b;
  line-height:1.6;
}

.about{
  padding:100px 8%;
  background:#eaf8fb;
  display:grid;
  grid-template-columns:1fr 380px;
  gap:60px;
  align-items:center;
}

.about h2{
  text-align:left;
}

.about p{
  font-size:19px;
  line-height:1.8;
  color:#475569;
  margin-bottom:25px;
}

.about ul{
  list-style:none;
}

.about li{
  font-size:18px;
  margin-bottom:15px;
  color:#0b3b82;
  font-weight:900;
}

.mascot{
  width:100%;
  max-width:360px;
  justify-self:center;
  filter:drop-shadow(0 25px 35px rgba(0,0,0,.18));
}

.quote{
  padding:100px 8%;
  background:white;
  text-align:center;
}

.quote form{
  max-width:760px;
  margin:auto;
  display:grid;
  gap:18px;
}

.quote input,
.quote select,
.quote textarea{
  padding:17px;
  border:1px solid #d8e1ea;
  border-radius:14px;
  font-size:16px;
  outline:none;
}

.quote input:focus,
.quote select:focus,
.quote textarea:focus{
  border-color:#17c6e6;
  box-shadow:0 0 0 4px rgba(23,198,230,.15);
}

.quote textarea{
  min-height:150px;
}

.quote button{
  background:#0b3b82;
  color:white;
  border:none;
  padding:18px;
  border-radius:14px;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}

.quote button:hover{
  background:#17c6e6;
}

footer{
  background:#072d63;
  color:white;
  text-align:center;
  padding:75px 20px;
}

.footer-logo{
  height:90px;
  background:white;
  padding:10px 18px;
  border-radius:14px;
  margin-bottom:20px;
}

footer p{
  margin-top:12px;
  font-size:18px;
}

.floating-whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:68px;
  height:68px;
  border-radius:50%;
  background:#2ed95f;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  font-size:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:2000;
}

@media(max-width:950px){
  .navbar{
    height:auto;
    padding:16px;
    flex-direction:column;
    gap:14px;
  }

  .logo{
    height:80px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .nav-btn{
    display:none;
  }

  .hero{
    padding-top:230px;
    text-align:center;
    justify-content:center;
  }

  .hero h1{
    font-size:46px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-features,
  .hero-buttons{
    justify-content:center;
  }

  .about{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about h2{
    text-align:center;
  }
}

@media(max-width:520px){
  .hero h1{
    font-size:38px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  h2{
    font-size:34px;
  }
}/* ===============================
   FASSIL HERO PREMIUM FIX
   =============================== */

body{
  font-family:'Montserrat', Arial, sans-serif;
}

/* NAVBAR MÁS LIMPIO */
.navbar{
  height:110px;
  padding:0 5%;
  background:#ffffff;
  box-shadow:0 8px 28px rgba(7,45,99,.08);
}

.logo{
  width:290px;
  height:auto;
  object-fit:contain;
}

nav a{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:16px;
  font-weight:800;
  color:#073b82;
}

.nav-btn{
  white-space:nowrap;
  font-family:'Montserrat', Arial, sans-serif;
  background:linear-gradient(135deg,#17c6e6,#0b82c8);
}

/* HERO CORREGIDO */
.hero{
  margin-top:110px;
  min-height:calc(100vh - 110px);
  padding:70px 7% 55px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:
    linear-gradient(120deg, rgba(7,45,99,.92), rgba(23,198,230,.42)),
    url("banner.png");
  background-size:cover;
  background-position:center;
  color:white;
}

/* LADO IZQUIERDO */
.hero-text{
  width:52%;
  max-width:760px;
  position:relative;
  z-index:3;
}

.hero h1{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:58px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-1.5px;
  margin-bottom:18px;
  color:white;
  text-shadow:0 6px 24px rgba(0,0,0,.22);
}

.hero h1 span{
  color:#17c6e6;
}

.hero-subtitle{
  font-size:21px;
  line-height:1.6;
  color:#ffffff;
  margin-bottom:28px;
  font-weight:500;
  max-width:720px;
}

/* LISTA */
.hero-list{
  display:grid;
  gap:14px;
  margin-bottom:30px;
}

.hero-list p{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:21px;
  font-weight:600;
  color:white;
}

.hero-list span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.25);
}

/* BOTONES */
.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:42px;
}

.btn{
  font-family:'Montserrat', Arial, sans-serif;
  padding:18px 38px;
  border-radius:44px;
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow:0 18px 35px rgba(0,0,0,.20);
}

.primary{
  background:linear-gradient(135deg,#17c6e6,#0b82c8);
  color:white;
}

.whatsapp-btn{
  background:#25D366;
  color:white;
}

/* ICONOS DE SERVICIOS */
.hero-icons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-icons div{
  width:88px;
  height:88px;
  border-radius:50%;
  background:rgba(255,255,255,.13);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:30px;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 35px rgba(0,0,0,.16);
}

.hero-icons small{
  font-size:12px;
  margin-top:6px;
  font-weight:700;
}

/* MASCOTA MÁS ARRIBA Y BIEN UBICADA */
.hero-mascot{
  position:absolute;
  right:4%;
  top:47%;
  transform:translateY(-50%);
  width:390px;
  max-width:34vw;
  z-index:2;
  filter:drop-shadow(0 28px 38px rgba(0,0,0,.32));
  animation:floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot{
  0%{
    transform:translateY(-50%);
  }
  50%{
    transform:translateY(-54%);
  }
  100%{
    transform:translateY(-50%);
  }
}

/* BRILLO DETRÁS DE LA MASCOTA */
.hero::after{
  content:"";
  position:absolute;
  right:5%;
  top:22%;
  width:460px;
  height:460px;
  background:radial-gradient(circle, rgba(23,198,230,.35), transparent 65%);
  border-radius:50%;
  z-index:1;
}

/* CELULAR */
@media(max-width:950px){
  .navbar{
    height:auto;
    padding:16px 5%;
    flex-direction:column;
    gap:14px;
  }

  .logo{
    width:250px;
  }

  .hero{
    margin-top:185px;
    min-height:auto;
    padding:70px 6% 55px;
    flex-direction:column;
    text-align:center;
  }

  .hero-text{
    width:100%;
  }

  .hero h1{
    font-size:42px;
  }

  .hero-subtitle{
    font-size:18px;
  }

  .hero-list p{
    justify-content:center;
    font-size:18px;
  }

  .hero-buttons,
  .hero-icons{
    justify-content:center;
  }

  .hero-mascot{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    margin-top:35px;
    width:260px;
    max-width:80%;
  }

  .hero::after{
    display:none;
  }

  @keyframes floatMascot{
    0%{ transform:translateY(0); }
    50%{ transform:translateY(-12px); }
    100%{ transform:translateY(0); }
  }
}