* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
 scroll-behavior: smooth;
}
a,strong,nav{
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  margin: 0;
  
}
a {
  text-decoration: none;
}
.topbar{
  background: #0f2235;
  color: #fff;
  font-size: 14px;
  padding: 16px 10%;

}
.container{
  display: flex;
  justify-content: space-between;
   
  align-items: center;
  width: 90%;
}
.top-right span{
  margin-left: 15px;
  position: relative;
}
.linea{
  height: 100%;
}
.top-right .linea::before{
content: "";
position:absolute ;
width: 2px;
height: 140%;
background: #a4a4a3af;
}
 
/* NAVBAR */
.navbar {
  background: #fff;
  padding: 15px 10%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  
}
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}
.container1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
nav a{
  text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s ease;
}
nav a:hover{
color: #ff9d2f;
}
nav a.active{
  color: #ff9d2f;
}
 a{
  text-decoration: none !important; 
  font-size: 18px;
  color: #0f2235;
  font-weight: 800;
}
 
.btn{
  background: #ff9d2f;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn:hover {
  background: #e88b1f;
}
/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

/* MENÚ OCULTO */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;

  background: #0f4c81;
  padding: 15px 0;

  display: none;
  flex-direction: column;

  border-radius: 6px;
}

/* LINKS */
.dropdown-menu a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #0c3c66;
}

/* MOSTRAR AL PASAR */
.dropdown:hover .dropdown-menu {
  display: flex;
}
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}
.dots {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 30px;
  height: 4px;
  background: #ccc;
  border-radius: 5px;
  transition: 0.3s;
}

.dot.active {
  background: #ff9d2f;
}
/* 🔥 HAMBURGUESA */
.menu-toggle{
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span{
  width: 28px;
  height: 4px;
  background: #333;
  display: block;
}

/* 🔹 MOBILE NAVBAR LIMPIO */
@media (max-width: 992px){

  .navbar{
    padding: 18px 8%;
  }
 
  .container1{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* 🔥 LOGO IZQUIERDA */
  .logo a{
  text-decoration: none !important; 
  font-size: 18px;
  color: #0f2235;
  font-weight: 800;
}

  /* 🔥 HAMBURGUESA DERECHA */
  .menu-toggle{
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  /* 🔥 OCULTAR NAV INICIALMENTE */
 nav{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;

    display: flex; /* 🔥 IMPORTANTE */
    flex-direction: column; /* 🔥 clave */

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

   

  /* 🔥 OCULTAR BOTÓN */
  .nav-content .btn{
    display: none;
  }

   nav.active{
    max-height: 100vh;
  }

  nav a{
    width: 100%;
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  /* 🔥 dropdown ocupa todo el ancho */
  .dropdown{
    width: 100%;
  }

  .dropdown > a{
    display: block;
    width: 100%;
  }

  .dropdown-menu{
    width: 100%;
    background: #0f4c81;
  }

  .dropdown-menu a{
    text-align: center;
   
  }
  
  nav.active{
    max-height: 800px; /* 🔥 despliega menú */
  }

  nav a{
    padding: 24px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 28px;
  }

  /* 🔥 ocultar botón cotización arriba */
  .nav-content .btn{
    display: none;
  }

  /* 🔥 dropdown adaptado */
  .dropdown-menu{
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown.active .dropdown-menu{
    display: block;
  }
  .topbar{
  background: #0f2235;
  color: #fff;
  font-size: 14px;
  padding: 16px 8%;

}
.container{
  display: flex;
  justify-content: space-between;
   
  align-items: self-start;
  width: 100%;
}
.linea{
  display: none;
}
}
 
 
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content{
position: relative;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 60px;
  margin-top: 20px;
}
.hero-content h2 {
  font-size: 30px;
  margin: 10px 0 20px;
  font-weight: 300;
}
.tag{
  color: #333;
  background: #fff;
  border-radius: 20px;
  padding: 5px 10%;
   font-size: 12px;
}
/* 🔹 TABLET */
@media (max-width: 992px){
  .hero{
    height: 80vh; /* 🔥 menos alto */
    padding: 0 20px;
  }
 
  .hero-content h1{
    font-size: 60px;
  }

  .hero-content h2{
    font-size: 38px;
    margin-bottom: 35px;
  }
.hero-content .btn{
font-size: 16px;
 padding: 10px 30px ;
}
  .tag{
    padding: 5px 30px;
    font-size: 24px;
  }
}

/* 🔹 CELULAR */
@media (max-width: 576px){
  .hero{
    height: 80vh; /* 🔥 más compacto */
    padding: 0 15px;
  }

  .hero-content h1{
    font-size: 36px;
    line-height: 1.2;
    padding: 0 15px;
  }

  .hero-content h2{
    font-size: 18px;
  }

  .tag{
    padding: 5px 20px;
    font-size: 12px;
  }

  .btn{
    font-size: 14px;
    padding: 10px 20px;
  }

  /* 🔥 DOTS más pequeños */
  .dot{
    width: 20px;
    height: 3px;
  }
}
.services {
  padding: 80px 10%;
  background: white;
  text-align: center;
}

.container-column {
  width: 100%;
  margin: auto;
}

.services .sub {
  color: #ff9d2f;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
}

.services h2 {
  font-size: 48px;
  margin: 10px 0 30px;
  font-weight: 700;
   
  color: #333;
}

/* TABS */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  
}
 
.tab {
  padding: 14px 60px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

.tab.active {
  background: #ff9d2f;
  color: white;
  border: none;
}

 

/* CARDS */
.cards {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
   
}

.card {
  background: #e7e8e9;
  width: 380px;
  padding-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 0 0;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  
}

.card p {
  font-size: 16px;
  padding: 0 25px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
  
    
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.card-line {
  width: 60%;
  height: 2px;
  background-color: #f59e0b;
  margin: 10px auto;
   
}

/* 🔹 TABLET */
@media (max-width: 992px){
  .services{
    padding: 60px 8%;
  }

  .services h2{
    font-size: 26px;
  }
.container-column .sub{
  font-size: 16px;
}
  /* 🔥 TABS más compactos */
  .tab{
    padding: 18px 25px;
    font-size: 18px;
  }

  /* 🔥 CARDS más equilibradas */
  .cards{
    gap: 30px;
  }

  .card{
    width: 650px;
    padding: 0px 0px 35px 0;
  }

  .card img{
    height: 270px;
  }

  .card h3{
    font-size: 38px;
  }

  .card p{
    font-size: 24px;
    margin-bottom: 40px;
  }
}

/* 🔹 CELULAR */
@media (max-width: 576px){

  .cards{
    flex-direction: column;
    align-items: center;
  }

  .card{
    width: 100%;
    max-width: 420px; /* 🔥 más grande */
    border-radius: 12px;
  }

  .card img{
    height: 220px; /* 🔥 imagen más grande */
  }

  .card h3{
    font-size: 22px;
  }

  .card p{
    font-size: 14px;
    padding: 0 20px;
  }

  .btn{
    width: 90%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.nosotros{
  display: flex;
 gap: 35px;
  background-color: #0f2235;
  color: white;
  width: 100%;
}
.nosotros img{
  max-width: 700px;
}
.nosotros-content{
  margin-top: 35px;
  height: 100%;
  max-width: 450px;
}
.nosotros-content span{
   margin-top: 25px   ;
    font-size: 18px;
   letter-spacing: 1.5px;
}
.nosotros-h2{
  margin-top: 20px;
  font-size: 38px;
}
.nosotros-content p{
  margin-top: 25px;
   line-height: 1.5;
   
}
.nosotros-content .text-visi{
font-size: 65px;
position: absolute;
letter-spacing: 1.3px;
 color:#283745;  
 margin-top: 20px;
}
/* 🔹 TABLET */
@media (max-width: 992px){
  .nosotros{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .nosotros img{
    width: 100%;
    max-height: 350px; /* 🔥 reduce tamaño */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 40px;
  }

  .nosotros-content{
    max-width: 700px;
    margin-top: 20px;
    padding: 0 20px;
    
  }

  .nosotros-h2{
    font-size: 48px;
  }

  .nosotros-content p{
    font-size: 24px;
  }

  .nosotros-content .text-visi{
    position: relative;
    font-size: 55px;
    margin-top: 10px;
    opacity: 0.2; /* 🔥 estilo más elegante */
  }
}

/* 🔹 CELULAR */
@media (max-width: 576px){
  .nosotros{
    padding: 15px;
    gap: 15px;
  }

  .nosotros img{
    max-height: 220px; /* 🔥 más compacto */
  }

  .nosotros-h2{
    font-size: 26px;
  }

  .nosotros-content span{
    font-size: 16px;
  }

  .nosotros-content p{
    font-size: 16px;
   
    padding: 0 8%;
  }

  .nosotros-content .text-visi{
    font-size: 35px;
    letter-spacing: 2px;
  }
}
.about-container{
  display: flex;
   padding: 80px 10%;
 gap: 20px;
 
}
.about-text{
  padding: 10px 60px;
}
.about-text .sub{
 
    font-size: 18px;
   letter-spacing: 1.5px;
   color: #333;
}
.about-text h2{
   margin-top: 20px;
  font-size: 38px;
   color: #333;
  
}
.about-text p{
   margin-top: 25px;
   line-height: 1.5;
      color: #444;
}
.about-img{
  width: 100%;
   position: relative;
}
.about-img img{
  
  max-height: 600px;
}
 .features{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  margin-top: 25px;
 
 }
 .feature{
   display: flex;
   align-items: center;
 }
 .feature span{
font-size: 28px;
font-weight: 600;
margin-left: 10px;
 } 
 .feature i{
  color: #f59e0b;
  font-size: 45px;
  position: relative;
 }

 .about-text p{
margin-bottom: 30px;
}
 /* BOTÓN PLAY */
.play-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: #ff9d2f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(255,157,47,0.3);
}

.ver-video {
  position: absolute;
  bottom: 50px;
  left: 110px;
  color: #fff;
  font-weight: bold;
}
/* 🔹 TABLET */
@media (max-width: 992px){
  .about-container{
    flex-direction: column;
    padding: 50px 8%;
    gap: 30px;
  }

  .about-text{
    padding: 0;
    text-align: center;
  }

  .about-text h2{
    font-size: 48px;
  }

  .about-text p{
    max-width: 750px;
    margin: 35px auto;
    font-size: 32px;
  }
.about-text .btn{
  padding: 22px 65px;
  font-size: 28px;
}
  .features{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    justify-items: center;
    
  }

  .feature{
    justify-content: flex-start;
     
  }
.feature i{
  font-size: 48px;
}
.feature span{
  font-size: 38px;
}
  /* 🔥 imagen más pequeña */
  .about-img{
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .about-img img{
    width: 80%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }

  .play-btn{
    bottom: 20px;
    left: 90px;
    width: 55px;
    height: 55px;
  }

  .ver-video{
    left: 160px;
    bottom: 35px;
  }
}

/* 🔹 CELULAR */
@media (max-width: 576px){
  .about-container{
    padding: 30px 15px;
  }

  .about-text h2{
    font-size: 26px;
  }

  .about-text p{
    font-size: 16px;
    padding: 0 8%;
  }

  .features{
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature{
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .feature span{
    font-size: 22px;
    margin-left: 0;
    margin-top: 8px;
  }

  .feature i{
    font-size: 38px;
  }

  /* 🔥 imagen aún más pequeña */
  .about-img img{
    width: 100%;
    max-height: 250px;
    
  }
.about-text .btn{
  font-size: 16px;
 
  padding: 16px 20px;
 
 
}
  .play-btn{
    width: 45px;
    height: 45px;
    font-size: 14px;
     left: 20px;
  }

  .ver-video{
    font-size: 13px;
    left: 75px;
    bottom: 35px;
  }
}
.carrera{
  display: flex;
  background: #0f2235;
  color: white;
  justify-content: space-between;
  margin:40px 10%;
    position: relative;
}
.carrera-txt{
  max-width: 700px;
   text-align: right;
   padding: 40px 40px 45px 0;
   
    
}
.carrera-txt .sub{
  margin-top: 20px;
  font-size: 25px;
}
.carrera-txt h2{
  margin: 25px 0;
  text-align: right;
  line-height: 1.4;
  font-size: 42px;
  
}
.carrera-txt .btn{
  margin-top:30px;
}
.carrera-img{
  position: relative;
  width: 100%;
}
.carrera img{
  max-width:430px;
position: absolute;
bottom: 0;
margin-left: 25px;
}
/* 📱 TABLET */
@media (max-width: 992px) {
  .carrera {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 5%;
  }

  .carrera-txt {
    text-align: center;
    padding: 30px 20px;
  }

  .carrera-txt h2 {
    text-align: center;
    font-size: 32px;
  }

  .carrera-txt .sub {
    font-size: 20px;
  }

  .carrera-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .carrera img {
    position: static; /* 🔥 clave */
    max-width: 300px;
    margin: 0;
  }
}
/* 📱 MOBILE */
@media (max-width: 576px) {
  .carrera {
    margin: 30px 15px;
    padding: 20px 0;
  }

  .carrera-txt h2 {
    font-size: 26px;
  }

  .carrera-txt .sub {
    font-size: 16px;
  }

  .carrera img {
    max-width: 320px;
  }
}
.blog-premium {
    padding: 60px 10%;
    background: #f9faf7;
    
}

.titulo-blog {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
 
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.categoria {
    display: inline-block;
    background: #c8d8b5;
    color: #536d33;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-content a {
    text-decoration: none;
    color: #4a7c59;
    font-weight: bold;
    transition: 0.3s;
}

.blog-content a:hover {
    color: #536d33;
}

/* 🔹 TABLET */
@media (max-width: 992px){
  .blog-premium{
    padding: 50px 10%;
  }
.blog-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}
.blog-content p {
    font-size: 26px;
    color: #666;
    margin-bottom: 15px;
}
.blog-content a {
  font-size: 22px;
}
  .titulo-blog{
    font-size: 52px;
  }

  .blog-grid{
    grid-template-columns: repeat(1, 1fr); /* 🔥 2 columnas */
    gap: 20px;
  }

  .blog-card img{
    height: 220px;
  }
}

/* 🔹 CELULAR */
@media (max-width: 576px){
  .blog-premium{
    padding: 30px 15px;
  }

  .titulo-blog{
    font-size: 24px;
  }

  .blog-grid{
    grid-template-columns: 1fr; /* 🔥 1 columna */
  }

  .blog-card{
    border-radius: 12px;
  }

  .blog-card img{
    height: 160px;
  }

  .blog-content h3{
    font-size: 16px;
  }

  .blog-content p{
    font-size: 13px;
  }
}
 /* BOTÓN FLOTANTE */
.floating-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #ffffff;
  color: white;
  font-size: 28px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.footer {
  background: #0f2235;
  color: #fff;
  padding-top: 60px;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  color: #ccc;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff9d2f;
}

/* ICONOS */
.footer-col i {
  margin: 0 6px;
  color: #ffffff;
  
}

/* REDES */
.socials a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  background: #ff9d2f;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}
 
.socials a:hover {
  background: #e88b1f;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1c3a57;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 45%;
  }

  .socials {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer {
    padding-top: 40px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    max-width: 320px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }

  .socials a {
    padding: 8px;
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 15px;
  }
}