:root{
--primary-color:#8700A3;
--primary-color-hard:#480057;
--blanco-1:#fff;
--blanco-2:#dadada;
--gris-1:#e6e3e3;
--gris-2:#1a1a1a;
--black:black;
}

body{
  font-family:'Inter',sans-serif;
  background:#000;
  color:var(--blanco-1);
}

h1,h2,h3,h4,h5{
  font-family:'Space Grotesk',sans-serif;
  letter-spacing:-0.5px;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-text{
  max-width:700px;
}

.hero-title{
  font-size:clamp(3rem,5vw,4.5rem);
  line-height:1;
  text-transform:uppercase;
  font-weight:700;
}

.hero-title span{
  display:block;
  color:var(--blanco-2);
  font-weight:400;
}

.hero-subtitle{
  margin-top:20px;
  font-size:1.1rem;
  opacity:.85;
}

.hero-btn{
  margin-top:40px;
  padding:14px 40px;
  letter-spacing:1px;
}

/* VIDEO */

.video-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

/* HERO móvil */

@media (max-width: 768px){

  .hero-content{
    text-align:center;
    padding-top:120px;
    padding-bottom:60px;
  }

  .hero-title{
    font-size:2.4rem;
    line-height:1.1;
  }

  .hero-subtitle{
    font-size:1rem;
  }

  .hero-btn{
    margin-top:25px;
    padding:12px 30px;
  }

}

/* GENERAL */

.section{
  padding:90px 0;
}

.bg-dark-soft{
  background:#0c0c0c;
}

.btn-primary{
  background:var(--primary-color);
  border:none;
  padding:12px 28px;
}

.btn-primary:hover{
  background:var(--primary-color-hard);
}

.pain-card{
  background:#111;
  padding:18px 24px;
  border-left:3px solid var(--primary-color);
  margin-bottom:15px;
  border-radius:10px;
}

/* BENEFICIOS */

.benefit-card{
  position: relative;
  background: linear-gradient(180deg,#0f0f0f,#080808);
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid #222;
  transition: .4s;
  height: 100%;
  overflow: hidden;
}

/* línea superior premium */
.benefit-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background: var(--primary-color);
  opacity:.7;
}

/* título con acento */
.benefit-card h4{
  margin-bottom: 12px;
  font-weight: 600;
}

/* hover premium */
.benefit-card:hover{
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba( var(--primary-rgb), 0.15);
}

/* texto más fino */
.benefit-card p{
  color:#ccc;
  line-height:1.6;
}


.includes{
  max-width:700px;
  margin:40px auto 0;
  list-style:none;
  padding:0;
}

.includes li{
  padding:10px 0;
  border-bottom:1px solid #222;
}

.logos{
  margin-top:40px;
}

.logos img{
  width:120px;
  margin:20px;
  filter:grayscale(100%);
  opacity:.7;
  transition:.4s;
}

.logos img:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:scale(1.08);
}



/* ABOUT PREMIUM */

.about-section{
  position:relative;
}

.about-photo-wrapper{
  display:inline-block;
  padding:6px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary-color),transparent);
}

.about-photo{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:50%;
  border:4px solid #000;
}

.about-badge{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--primary-color);
  margin-bottom:10px;
}

.about-name{
  font-size:2.2rem;
  margin-bottom:20px;
}

.about-text{
  color:var(--blanco-2);
  max-width:520px;
  line-height:1.7;
}

.about-stats{
  display:flex;
  gap:30px;
  margin-top:25px;
}

.about-stats div{
  text-align:center;
}

.about-stats strong{
  font-size:1.6rem;
  display:block;
  color:var(--primary-color);
}

.about-stats span{
  font-size:.8rem;
  opacity:.7;
}

@media (max-width: 768px){
  .linkedin-wrapper{
    display:flex;
    justify-content:center;
  }

  .linkedin{
    width:fit-content;
  }
}


@media (max-width: 768px){

.about-photo{
  width:170px;
  height:170px;
  object-fit:cover;
  border-radius:50%;
  border:4px solid #000;
}

}

/* MOBILE */

@media(max-width:768px){

  .about-name{
    text-align:center;
  }

  .about-text{
    text-align:center;
    margin:0 auto;
  }

  .about-stats{
    justify-content:center;
  }

}


/*NAVBAR*/

.premium-navbar{
  background:rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-bottom:1px solid #111;
}

.navbar-brand{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  letter-spacing:1px;
}

.brand-highlight{
  color:var(--primary-color);
}

.nav-link{
  color:var(--blanco-2)!important;
  position:relative;
  padding:6px 0;
}

.nav-link::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0%;
  height:2px;
  background:var(--primary-color);
  transition:.3s;
}

.nav-link:hover::after{
  width:100%;
}

.nav-cta{
  border-color:var(--primary-color);
  color:var(--primary-color);
  padding:8px 20px;
  border-radius:20px;
}

.nav-cta:hover{
  background:var(--primary-color);
  color:#fff;
}

.navbar-photo{
  width:40px;
  height:40px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid var(--primary-color);
}

/* FOOTER */

.premium-footer{
  background:linear-gradient(180deg,#000,#050505);
  padding:70px 0 30px;
  border-top:1px solid #111;
}

.footer-brand h4{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  letter-spacing:1px;
}

.footer-brand p{
  color:var(--blanco-2);
  max-width:260px;
  margin-top:15px;
}

.footer-nav h6,
.footer-contact h6{
  text-transform:uppercase;
  font-size:.75rem;
  letter-spacing:1px;
  color:var(--blanco-2);
  margin-bottom:15px;
}

.footer-nav ul{
  list-style:none;
  padding:0;
}

.footer-nav ul li{
  margin-bottom:8px;
}

.footer-nav ul li a{
  color:var(--blanco-1);
  text-decoration:none;
  opacity:.8;
}

.footer-nav ul li a:hover{
  color:var(--primary-color);
}

.footer-contact .footer-cta{
  display:inline-block;
  margin:10px 0 15px;
  padding:10px 22px;
  border:1px solid var(--primary-color);
  border-radius:20px;
  color:var(--primary-color);
  text-decoration:none;
  transition:.3s;
}

.footer-contact .footer-cta:hover{
  background:var(--primary-color);
  color:#fff;
}

.socials a{
  display:inline-block;
  margin-right:15px;
  color:var(--blanco-2);
  text-decoration:none;
  font-size:.9rem;
}

.socials a:hover{
  color:var(--primary-color);
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #111;
  font-size:.85rem;
  color:var(--blanco-2);
}

@media (max-width: 768px){

  .premium-footer{
    text-align:center;
    padding:50px 20px 25px;
  }

  .footer-brand p{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  .footer-nav,
  .footer-contact{
    margin-top:30px;
  }

  .footer-nav ul li{
    margin-bottom:12px;
  }

  .footer-contact .footer-cta{
    display:inline-block;
    width:auto;
    margin:15px auto;
  }

  .socials{
    margin-top:10px;
  }

  .socials a{
    margin:0 10px;
  }

  .footer-bottom{
    font-size:.75rem;
    padding-top:15px;
  }
}
