/* ===== VARIABLES ===== */
:root {
  --dark-bg: #0c0f0c;
  --dark-secondary: #111611;
  --lime: #c7ff3d;
}

/* ===== GENERAL ===== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: var(--dark-bg);
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.logo-text {
  font-weight: 800;
  color: #fff;
}

.logo-text span {
  color: var(--lime);
}

.nav-link-custom {
  color: #ccc !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link-custom:hover {
  color: var(--lime) !important;
}

.btn-lime {
  background-color: var(--lime);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
}

.btn-lime:hover {
  background-color: #b4f12a;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;              
  background: radial-gradient(circle at center, #1c2a1c, #070907);
  position: relative;
  overflow: visible;              
  padding-top: 120px;
  padding-bottom: 140px;          
}

.hero-container {
  position: relative;
  z-index: 2;
}


/* círculo decorativo */
.hero-bg-circle {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== TITULO ===== */



.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 6; /* texto encima */
}

.text-lime {
  color: var(--lime);
}

.text-white-overlay {
  color: rgba(255, 255, 255, 0.9);
}

.hero-title span,
.hero-title strong {
  position: relative;
  z-index: 6;
}


/* ===== IMAGENES HERO ===== */

.hero-images-wrapper {
  margin-top: 60px;
  position: relative;
  height: 650px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* IMAGEN CENTRAL */
.hero-img-main {
  position: absolute;
  width: 600px;
  bottom: 10px;  
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  filter: drop-shadow(0px 50px 70px rgba(0,0,0,0.6));
}

/* IMAGEN IZQUIERDA */
.hero-img-left {
  position: absolute;
  width: 220px;
  bottom: 360px;   
  left: 8%;       
  z-index: 5;
  border-radius: 20px;
}

/* IMAGEN DERECHA */
.hero-img-right {
  position: absolute;
  width: 220px;
  bottom: 190px;
  right: 15%;      
  z-index: 5;
  border-radius: 20px;
}



/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .hero-images-wrapper {
    height: 450px;
  }

  .hero-img-main {
    width: 380px;
    bottom: -10px;
  }

  .hero-img-left {
    width: 140px;
    bottom: 200px;
    left: 8%;
  }

  .hero-img-right {
    width: 140px;
    bottom: 120px;
    right: 8%;
  }
}


.nav-menu a {
  margin-left: 18px;
}


/* Responsive */
@media (max-width: 768px) {

  .nav-menu {
    gap: 10px;
  }

  .nav-link-custom {
    font-size: 0.9rem;
  }

  .btn-sm {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}


/* ================= CONECTA SECTION ================= */

.connect-section {
  background: #f4f4f4;
  padding: 120px 0;
  position: relative;
  margin-top: -90px; 
}


.connect-text h2 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.connect-text p {
  color: #555;
  margin-bottom: 25px;
}

.btn-connect {
  padding: 10px 20px;
  border-radius: 8px;
}

/* MOCKUP */

/* MOCKUP CARD */


.mockup-card {
  background: #000;
  color: #fff;
  width: 320px;
  height: 420px;
  border-radius: 30px;
  position: relative;
  overflow: visible;
  box-shadow: 0 40px 60px rgba(0,0,0,0.25);
  margin: auto;
  z-index: 3;
}



/* IMAGEN */
.mockup-img {
  position: absolute;
  top: -30px;
  right: -30px;    
  width: 480px;
  transform: translateX(-30px);
  z-index: 6;      
  pointer-events: none;

}



/* DEGRADADO DESDE EL BALÓN HACIA ABAJO */



.mockup-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;   
  background: linear-gradient(
    to bottom,
    rgba(150,150,150,0.2) 0%,
    rgba(80,80,80,0.5) 40%,
    rgba(0,0,0,0.9) 80%,
    #000 100%
  );
  z-index: 4;
}


/* TEXTO ENCIMA DEL DEGRADADO */
.mockup-content {
  position: absolute;
  bottom: 30px;  
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 7;
}

.mockup-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

.mockup-card strong {
  font-weight: 800;
}



/* ELEMENTOS DECORATIVOS VERDES */

.connect-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #c7ff3d;
  transform: rotate(45deg);
  top: 30%;
  left: 55%;
  z-index: 1;
  opacity: 0.6;
}

/* LABELS */

.mockup-label {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 5;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover elegante */

.mockup-label:hover {
  background: #000;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}


.left-label {
  top: 35%;
  left: 15%;
}

.right-label {
  top: 55%;
  right: 15%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .connect-section {
    padding: 80px 0;
  }

  .connect-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .connect-decor {
    display: none;
  }
  
  .mockup-card {
    width: 260px;
    height: 360px;
  }

   .mockup-img {
    width: 340px;
    top: -50px;
    right: -40px;
  }

  
   .mockup-card::after {
    height: 70%;
  }
}



@media (max-width: 992px) {

 

  /* BOTONES */

  .mockup-label {
    position: relative !important;
    display: inline-block;
    margin: 12px 6px 0 6px;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .left-label,
  .right-label {
    position: relative;
  }

}

body {
  overflow-x: hidden;
}


@media (max-width: 992px) {

  .mockup-card {
    width: 260px;
    height: 360px;
    margin: 0 auto;
    overflow: visible;   
  }

  .mockup-img {
    position: absolute;
    width: 320px;
    top: -40px;
    left: 40%;   
    transform: translateX(-51.3%);
  }

  .mockup-content {
    bottom: 20px;
  }

}



/* ================= TALENT SECTION ================= */

.talent-section {
  background: linear-gradient(135deg, #1e2b1e, #2f3a1f);
  padding: 120px 0;
  border-radius: 20px;
  margin: 80px auto;
  max-width: 1200px;
  color: #fff;
  position: relative;
}

.talent-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Marco verde detrás */

.talent-frame {
  position: absolute;
  width: 260px;
  height: 360px;
  background: #c7ff3d;
  border-radius: 20px;
  top: 40px;
  left: 120px;
  z-index: 1;
}

/* Tarjeta negra */

.talent-card {
  background: #111;
  width: 260px;
  height: 360px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: visible;   /* 🔥 permitir que sobresalga */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
}


/* Imagen */

.talent-img {
  position: absolute;
  top: -50px;      /* 🔥 sobresale arriba */
  left: 50%;
  transform: translateX(-50%);
  width: 400px;    
  z-index: 3;
}



/* Título */

.talent-title {
  position: relative;
  z-index: 3;
  text-align: center;
}

.talent-title h4 {
  font-weight: 700;
}

.talent-title strong {
  font-weight: 900;
  color: #c7ff3d;
}

/* Labels flotantes */


.talent-label {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;   /* 🔥 más alto que la imagen */
}


.talent-label:hover {
  background: #c7ff3d;
  transform: translateY(-5px);
}



.left-talent {
  left: 60px;
  top: 90px;
}

.right-talent {
  right: 40px;
  top: 220px;
}

/* Texto derecha */

.talent-text h2 {
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.talent-text p {
  color: #ddd;
  margin-bottom: 25px;
}

.btn-lime {
  background: #c7ff3d;
  color: #000;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-lime:hover {
  background: #fff;
  color: #000;
}


@media (max-width: 992px) {

  .talent-section {
    padding: 80px 20px;
    margin: 40px 15px;
  }

  
  .talent-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .talent-frame {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }

  
  
  
  .talent-card {
  position: relative;
  left: 20px;   /* 🔥 mueve hacia la derecha */
}


  .talent-label {
    position: relative !important;
    display: inline-block;
    margin: 12px 8px 0 8px;
    z-index: 20;
  }

  
   .left-talent,
  .right-talent {
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .talent-text {
    margin-top: 30px; 
    text-align: center;
  }

  
  .talent-img {
    width: 300px;
    top: -30px;
    left: 55%;
    transform: translateX(-50%);
  }

}


/* ================= OPPORTUNITIES SECTION ================= */

.opportunities-section {
  background: #f4f4f4;
  padding: 120px 0;
}

.section-header h2 {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* CARD */

.profile-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}




.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Imagen */



.profile-img {
  width: 100%;
  height: 260px;      /* 🔥 misma altura para todas */
  object-fit: cover;  /* llena sin deformar */
  object-position: top center;

}

/* Info */

.profile-info {
  padding: 20px;
}

.profile-info h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-meta span {
  font-size: 0.75rem;
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 20px;
  color: #666;
}

@media (max-width: 992px) {

  .opportunities-section {
    padding: 80px 20px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .profile-img {
    height: 200px;
  }

}


/* ================= SUCCESS SECTION ================= */

.success-section {
  background: #dcdcdc;
  padding: 120px 0;
}


.success-section .section-header h2 {
  font-weight: 800;
  margin-bottom: 15px;
}

.success-section .section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonial Card */

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Estrellas */

.stars {
  color: #ffb400;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Quote destacada */

.highlight .quote {
  font-size: 3rem;
  color: #ddd;
  position: absolute;
  top: 10px;
  left: 20px;
}

/* Texto */

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Usuario */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  display: block;
}

.testimonial-user small {
  color: #888;
}


@media (max-width: 992px) {

  .success-section {
    padding: 80px 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

}


/* ================= FOOTER ================= */

.main-footer {
  background: linear-gradient(135deg, #1e2b1e, #2f3a1f);
  padding: 60px 0;
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
}

/* Logo circular decorativo */

.footer-circle {
  width: 50px;
  height: 50px;
  border: 2px dashed #c7ff3d;
  border-radius: 50%;
}

/* Links */

.footer-links {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #c7ff3d;
}

/* Newsletter */

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #ddd;
}

.newsletter-form {
  display: flex;
  max-width: 350px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #7b3ff2;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #9b6cff;
}


@media (max-width: 992px) {

  .footer-links {
    justify-content: center;
    margin: 20px 0;
  }

  .footer-newsletter {
    text-align: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }

}
