/* styles.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#07111d;
  color:#fff;
}

/* HERO */

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(5,12,20,.75), rgba(5,12,20,.85)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1974&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  padding:30px 7%;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  width:120px;
}

.menu{
  display:flex;
  gap:30px;
}

.menu a{
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.menu a:hover{
  color:#ff7b00;
}

.hero-content{
  min-height:80vh;
  display:flex;
  align-items:center;
}

.hero-text{
  max-width:700px;
}

.badge{
  background:#ff7b00;
  color:#fff;
  padding:10px 18px;
  border-radius:100px;
  font-size:.8rem;
  font-weight:700;
  display:inline-block;
  margin-bottom:25px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:25px;
}

.hero h1 span{
  color:#3ec7ff;
}

.hero p{
  font-size:1.1rem;
  line-height:1.8;
  color:#d5d5d5;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn-primary{
  background:#ff7b00;
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:2px solid #3ec7ff;
  color:#3ec7ff;
}

.btn-secondary:hover{
  background:#3ec7ff;
  color:#07111d;
}

/* SECTIONS */

section{
  padding:90px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:#ff7b00;
  font-weight:700;
  letter-spacing:2px;
}

.section-title h2{
  font-size:2.5rem;
  margin-top:10px;
}

/* BENEFITS */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.benefit-card{
  background:#0f1c2c;
  padding:35px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.benefit-card:hover{
  transform:translateY(-8px);
}

.benefit-card h3{
  margin-bottom:15px;
  color:#3ec7ff;
}

.benefit-card p{
  color:#cfcfcf;
  line-height:1.7;
}

/* SEARCH */

.search-section{
  background:#091423;
}

.dark-section{
  background:#07101c;
}

.search-bar{
  background:#0f1c2c;
  padding:20px;
  border-radius:22px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.search-bar input,
.search-bar select{
  flex:1;
  min-width:180px;
  padding:16px;
  border:none;
  border-radius:12px;
  background:#18283d;
  color:#fff;
  font-family:'Montserrat', sans-serif;
}

.search-bar button{
  padding:16px 28px;
  border:none;
  border-radius:12px;
  background:#ff7b00;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.search-bar button:hover{
  opacity:.9;
}

/* RESULTS */

.results-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.result-card{
  background:#0f1c2c;
  border-radius:22px;
  padding:28px;
  border:1px solid rgba(255,255,255,.05);
}

.result-card h3{
  color:#3ec7ff;
  margin-bottom:15px;
}

.result-card p{
  color:#d7d7d7;
  line-height:1.7;
  margin-bottom:10px;
}

.result-card strong{
  color:#ff7b00;
}

/* CTA */

.cta-section{
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1493246318656-5bfd4cfb29b8?q=80&w=2070&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.cta-box{
  max-width:800px;
  margin:auto;
  text-align:center;
}

.cta-box h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-box p{
  color:#d8d8d8;
  line-height:1.8;
  margin-bottom:35px;
}

/* FOOTER */

footer{
  background:#050b13;
  padding:60px 7%;
}

.footer-content{
  text-align:center;
}

.footer-content img{
  width:120px;
  margin-bottom:20px;
}

.footer-content h3{
  font-size:2rem;
}

.footer-content p{
  color:#c8c8c8;
  margin:15px 0 25px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#3ec7ff;
  text-decoration:none;
}

.traveler-link-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:20px;
  padding:14px 22px;
  border-radius:12px;
  background:#ff7b00;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.traveler-link-btn:hover{
  transform:translateY(-3px);
  opacity:.92;
}

.professional-buttons{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

.professional-btn{
  flex:1;
  min-width:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

/* ===== BLOQUE SERVICIOS DIGITALES ===== */

.digital-services-section{
  padding:100px 7%;
  background:#07111d;
  color:#ffffff;
}

.digital-services-section .section-heading{
  text-align:center;
  max-width:850px;
  margin:0 auto 50px;
}

.digital-services-section .section-kicker{
  display:inline-block;
  color:#E9C46A;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:14px;
}

.digital-services-section h2{
  color:#ffffff;
  font-size:2.7rem;
  margin-bottom:18px;
}

.digital-services-section p{
  color:#d7dde7;
  line-height:1.8;
}

.digital-services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:1180px;
  margin:0 auto;
}

.digital-service-card{
  position:relative;
  background:#0f1c2c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:38px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.digital-service-card:hover{
  transform:translateY(-6px);
  border-color:#2A9D8F;
}

.featured-digital{
  border:2px solid #2A9D8F;
}

.featured-badge{
  display:inline-block;
  background:rgba(42,157,143,.16);
  color:#2A9D8F;
  padding:8px 14px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:18px;
}

.digital-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(233,196,106,.15);
  color:#E9C46A;
  font-size:1.8rem;
  margin-bottom:24px;
}

.digital-label{
  display:inline-block;
  background:rgba(42,157,143,.14);
  color:#2A9D8F;
  border-radius:999px;
  padding:8px 12px;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.digital-service-card h3{
  color:#ffffff;
  font-size:2rem;
  margin-bottom:18px;
}

.digital-service-card ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:24px 0 30px;
}

.digital-service-card li{
  position:relative;
  padding-left:28px;
  color:#edf2f7;
  font-weight:600;
}

.digital-service-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#2A9D8F;
  font-weight:900;
}

.digital-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:54px;
  border-radius:999px;
  background:#2A9D8F;
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
}

.digital-btn:hover{
  background:#E9C46A;
  color:#1D3557;
}

@media(max-width:900px){
  .digital-services-grid{
    grid-template-columns:1fr;
  }
}

.float-whatsapp{
    position:fixed;
    right:28px;
    bottom:28px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    text-decoration:none;
    z-index:999;
    box-shadow:var(--shadow);
}

.maps-btn{
  background:#3ec7ff;
  color:#07111d;
}

.professional-btn:hover{
  transform:translateY(-3px);
  opacity:.92;
}

/* RESPONSIVE */

@media(max-width:768px){

  .hero h1{
    font-size:2.8rem;
  }

  .menu{
    display:none;
  }

  .search-bar{
    flex-direction:column;
  }

}