    :root{
      --primary-color-brand: #0571d3;
      --secondary-color-brand: #5CE1E6;
      --third-color-brand: #242424;
    }
/*css*/
    /* ----- RESET ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat';
    }
    body{
      background-color: var(--primary-color-brand);
      background-image: url(/assets/imagenesPágina/FONDO\ PAGE\ LINEAS.png);
      background-repeat: no-repeat;
    }


/*FUENTES DE LETRAS*/
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-VariableFont_wght.ttf') format('woff2');
  font-style: normal;
}@font-face {
  font-family: 'League Spartan';
  src: url('/assets/fonts/LeagueSpartan-VariableFont_wght.ttf') format('woff2');
  font-style: normal;
}


    /* ----- NAVBAR -------------------------*/
    .nav-header {
    width: 100%;
    height: auto;
    background: transparent;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: sticky;
    }
    .nav-sticky {
    width: 100%;
    height: 120px;
    background-color: #24242466;
    color: #fff; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color .3s ease-in-out;
    }

    /* LOGO */
    .logo{
    height: fit-content;
    width: 600px;
    }.logo > #nav-logo{
      width: 600px;
      height: 100px;
    }
    
    img {
    width: 100%;
    max-width:270px;
    height:auto;
    }

    /* LINKS */
    .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    font-family: 'League Spartan';
    margin-right:100px;
    }

    .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease; /* Transición suave */
}
    .ul-aInside:hover{
    color:var(--third-color-brand) ;
    transform: translateY(-4px);
    }
    .ul-aInsideAF:hover{
    color: var(--secondary-color-brand) ;
    transform: translateY(-4px);
    }

    /* ----- HAMBURGER ----- */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--secondary-color-brand);
      transition: 0.5s;
    }
    /* Animación al convertirse en X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}













/*main*/
.main{
  padding: 60px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.img-container{
	display: flex;
	justify-content: flex-start;
  border-radius: 10px;
}
.title{
	font-family: 'League Spartan';
	font-size: 54px;
	margin-bottom: 20px;
	margin-left: 30px;
	color: #F5F1ED;
}.introduction{
	max-width: 800px;
	width: 100%;
}
.text{
  color: #fff;
  font-size: 1.4rem ;
  font-family: 'Montserrat';
  font-style: italic;
  text-align:left;
  padding: 40px;
}.cursorHeaderTitle{
  width: 3px;
  display: inline-block;
  background-color: var(--secondary-color-brand);
  margin-left: 5px;
  animation: blink .7s infinite;
  position: relative;
  z-index: -40;
}
.typeWritingHeader{
  color: var(--secondary-color-brand);
  font-family: "League Spartan";
}
@keyframes blink {
  0% {opacity: 1;}
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.computer{
	width: 100%;
	max-width: 800px;
	height: auto;
}
.contact-btn {
	margin: 40px;
	display: inline-block;
	padding: 18px 28px;
	background: var(--secondary-color-brand);         
	color: #002C4B;               
	font-family: 'League Spartan', sans-serif;
	font-size: 18px;
	letter-spacing: 0.5px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(92, 225, 230, 0.35);
	user-select: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(92, 225, 230, 0.55);
  background: #45cdd3;
}



/* Secciones generales */
.section{
  padding: 80px 60px;
}
.container{  margin:0 auto; }


/* SERVICES GRID----------------------------------------------------------------------------- */
#servicios{
	background-color: var(--third-color-brand);
	clip-path: polygon(0 8%, 100% 3%, 100% 87%, 0 94%);
	width: 100%;
  height: auto;
  min-height:1200px ;
	padding-top: 300px;
	padding-bottom: 600px;
	margin-top:100px;
}
.service-container{
	width: 100%;
	height: 100%;
}
.services-grid{
	display:grid;
	grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
	gap:34px;
	margin: 120px 0px 60px 0px;
	padding: 60px 0px;
}
.best-plan{
	transform: translateY(-60px);
}.best-plan:hover{
    box-shadow: 0 0 40px #043461;
	transition: .4s transform ease-in;
	transform: translateY(-40px);
	transform: scale(1.1,1.1); /* Igual que: scaleX(0.7) scaleY(0.7) */
}
.services-grid h3{
	text-align: center;
}
.service-card{
	background: #f3f3f3;
	padding:clamp(0rem,4vw,22px);
	border-radius:12px;
	color:#4FA9D9;
	max-height:900px;
	display:flex;
	flex-direction:column;
	gap:12px;
	transition: .3s transform ease-out;
}
.service-card:hover{
	box-shadow: 0 0 40px #043461;
	transition: .4s transform ease-in;
	transform: translateY(-30px);
	transform: scale(1.1,1.1); /* Igual que: scaleX(0.7) scaleY(0.7) */
}.service-card:hover .icon{
  color: var(--primary-color-brand);
}
.plan-title{
	color: #242424;
	font-weight: 500;
	font-size: clamp(1rem,10vw,1.2rem);
}
.plan-list{
	color: #242424;
	font-size: 1.2rem;
	padding: 10px;
}.plan-list li{
	margin: 20px 10px;
	font-size: clamp(.6rem,4.5vw,1.1rem);
  display: flex;
  align-items: center;
  gap: 20px;
}.plan-list li:hover{ /*VER SI PONER EFECTO*/
  color: #0571d3;
}
.plan-description {
	color: #242424;
	font-weight: 600;
	font-size: clamp(.6rem,4.6vw,1.1rem);
}
.service-icon{ 
	font-size: clamp(1rem,5vw,38px); 
	text-align: center;
  flex-shrink: 0;
  color: #242424;
}
.plan-title{
	color: #139ce6;
	font-weight: 700;
	font-size: 1.4rem;
	font-family:"League Spartan"; 
	margin:0; 
}
.small-cta{
	margin-top:auto;
	align-self:flex-start;
	background:var(--primary-color-brand);
	color:#fff;
	border:1px solid rgba(255,255,255,0.12);
	padding:8px 12px;
	border-radius:10px;
	text-decoration:none;
  transition: background-color .35s ease-out, color .35s ease-out;
}.small-cta:hover{
  transition: background-color .65s ease-in, color .65s ease-in;
  background-color: #5fe0e4a2;
  color: #242424;
}
.plan-list > li{
    list-style-type: none;
}.symbol-beforeli{
    color: var(--primary-color-brand);
}

/* PUBLICACIONES GRID */
#portfolio{
  background-color: var(--primary-color-brand);
}
.portfolio-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}
.pf-item{ position:relative; overflow:hidden; border-radius:10px; cursor:pointer; min-width: 200px; max-width: 600px;   }
.pf-item img{ width:100%;min-width: 200px; max-width: 600px; min-height: 300px; max-height:430px; object-fit:cover; display:block; transition:transform .35s ease; object-position: top; }
.pf-item:hover img{ transform:scale(1.04); }
.pf-item figcaption{
  position:absolute; left:0px; bottom:0px; color:#fff; text-shadow:0 4px 12px rgba(0,0,0,0.45);
}.fondoDescriptionPubli{
  width: 100%;
  height: auto;
  background-color: #00000044;
  padding: clamp(1rem,2vw,2rem);
  font-size: clamp(.8rem, 2vw, 1.4rem);
}.publicaciones-title{
  font-family: "League Spartan", sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: clamp(1rem, 15vw, 2rem);
}

/* ABOUT */
.about-grid{ 
  display:flex; 
  align-items:center;
  justify-content: center;
  margin-top:18px; 
}
.about-text .lead{
  color:var(--secondary-color-brand);
  font-weight: 600;
  margin-bottom:18px; 
  font-size: clamp(.6rem, 4vw, 1.2rem);
}.about-text{
  min-width: 100px;
  max-width: 1000px;
}
.values-list{ 
  list-style:none;
  display:grid; 
  gap:12px; 
  padding:0;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

.values-list li{ 
  background-color: #f3f3f3;
  padding:12px;
  border-radius:10px; 
  border: solid 3px var(--primary-color-brand);
  min-width:150px; 
  display:flex; 
  flex-direction:column; 
  color:#00446A; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  user-select: none;
}.values-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 6px 20px var(--secondary-color-brand);
}
.checkListServ{
  width: clamp(.8rem,6.5vw,24px);
  height: auto;
}
.about-media img{ 
  width:100%; 
  border-radius:12px; 
}.icon{
  width: 84px;
  height: auto;
  flex-shrink: 0;
}

/* CONTACT FORM ---------------------------------------------*/
.container-section-contact{
  display: flex;
  width: 100%;
  min-width: 200px;
  align-items: center;
  flex-direction: column;
  margin: 80px;
}.contact-section{
  display: flex;
}
/* Titulos */
.section-title{
  font-family: "League Spartan", sans-serif;
  color: #ffffff;
  font-size: clamp(1rem,12vw,3rem);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-sub{ color: rgba(255,255,255,0.9); margin-bottom: 24px; font-size: clamp(1rem,1.6vw,2rem); }
/* INPUTS FORM ---------------------------------------------*/
.contact-grid{ 
  display: block; 
  width: 100%;    
  max-width: 700px;  
  margin-top: 20px;
}
.form-label{
  display: flex;       
  flex-direction: column; 
  width: 100%;         
  margin-bottom: 20px; 
  color: #fff; 
  font-size: 1.2rem;
}
.contact-form input, .contact-form textarea{
  width:100%; 
  padding:12px; 
  border-radius:8px;
  border:1px solid var(--third-color-brand);
  background: #ddd; color:#000;
  margin-top: 10px;
  font-size: 1rem;
}.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form .btn-primary{ 
  margin-top:8px;
  padding:12px 16px;
  background:var(--secondary-color-brand); 
  border:none; color:var(--third-color-brand);
  border-radius:10px; 
  cursor:pointer; 
  font-size: 1.2rem;
}

/* FOOTER ZONE----------------------------------------------------*/
.footer-zone{
  display: flex;
  flex-direction: column;
  background-color: #242424;
  justify-content: center;
}
.footer-container-zone{
    display: flex;
    width: 100%;
    height: fit-content;
    padding: 60px 60px 20px 60px;
    justify-content: space-around;
    align-items: baseline;
}.footer-info  h4{
  font-size: 1.4rem;
  color: #fff;
  font-family: "League Spartan";
  padding-bottom: 2px;
}.footer-info a {
  color: #aaa;
  text-decoration: none;
  padding-left: 10px;
}.footer-info p {
    margin-top: 10px;
}.footer-info a:hover {
  color: var(--secondary-color-brand);
}.copyright-msg{
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 1.4rem;
  color: #aaa;
  font-family: "League Spartan";
}



















@media(max-width:600px){
  .logo{
    width: 200px;
  }
  .nav-sticky {
    padding: 15px;
  }
  .service-titlePhone{
    margin-top: 120px;
  }
  .services-grid{
    margin-top: 20px;
  }
  .best-plan{
	transform: translateY(0);
}.service-card{
  margin: 20px 0px;
}
}
/* Responsive */
@media (max-width: 880px){
.main{
    flex-direction: column;
    padding: 28px 0;
    gap: 24px;
}

.computer{
    width: 100%;
    max-width: 620px;
    height: auto;
}

.img-container{
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
    order: 1;
}

.title{
    text-align: center;
    margin-left: 0;
    font-size: 42px;
}
.contact-btn-container{
    display: flex;
}
.contact-btn{
    margin: auto;
}
.text{
    font-size: 1.2rem;
}
}

@media (max-width:980px){
  .portfolio-grid{ grid-template-columns: repeat(2,1fr); }
  .about-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
}
 /* ----- RESPONSIVE ----- */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        left: 0; 
        top: -20px;
        width: 100vw;
        flex-direction: column;
        background: var(--third-color-brand);
        text-align: center;
        display: flex;
        transform: translateY(-400px);
        transition: transform .35s ease-out, opacity .25s ease-out;
        opacity: 0;
        z-index: 20;
        height: 100%;
        font-size: clamp(.8rem, 7vw, 1.4rem);
        justify-content: center;
        align-content: center;
      }

      .nav-links.active {
        transform: translateY(20px);
        transition: transform .35s ease-in, opacity .45s ease-in;
        opacity: 1;
        background-color: #242424cc;
        height: 100dvh;
      }
      .ul-aInside:hover{
        color: var(--secondary-color-brand);
      }
      .hamburger {
        display: flex;
        position: relative;
        z-index: 20;
      }
    } 
