/* =============================================
   REVOLUCIONÁ TU PROFESIÓN 2026 – Landing Page
   Paleta:
     Rosa    #e51e56 / #e95498 / #ff55b7
     Amarillo #f0e40b
     Gris    #dbdfe2
   ============================================= */

/* RESET */
/* =============================================
   HEADER / NAVBAR
   ============================================= */

header {
  width: 100%;
  background: #dbdfe2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.img-logo {
  width: 180px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

nav ul li a {
  color: #1d1c1c;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background: #e95498;
  color: #fff;
}

.whatsapp {
  width: 28px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Hamburger */
.checkbtn {
  font-size: 30px;
  color: #1d1c1c;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
}

#check {
  display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: #1d1c1c;
  color: #ccc;
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-logos span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #ccc;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e95498;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: #e95498;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 12px;
  color: #888;
  margin-top: 20px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 858px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #e95498;
    top: 80px;
    left: -100%;
    text-align: center;
    flex-direction: column;
    transition: all 0.4s;
    z-index: 9999;
    padding-top: 20px;
  }

  nav ul li {
    margin: 16px 0;
  }

  nav ul li a {
    color: #fff;
    font-size: 20px;
  }

 nav ul li a:hover {
    background: none;
    color: #f0e40b;
  }

  #check:checked ~ ul {
    left: 0;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 80vh;
    padding: 40px 16px;
  }

  .hero-logos {
    gap: 10px;
  }

  .hero-logos span {
    font-size: 11px;
  }

  .hero-logos .sep {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -22px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .content-section {
    padding: 60px 16px;
  }
}
/*** SECCION CATALOGO *********************************/
.titulo-catalogo {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;

    /* Estilo moderno */
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    animation: fadeIn 0.8s ease-out;
}

/* Animación suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/****** botones */
.botonera-rubros {
    
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn-rubro {
    all: unset;
    padding: 12px 25px;
    font-size: 18px;
    transition: 0.3s ease;
     border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-rubro:hover {
    background: #e95498;
    transform: scale(1.05);
}

.btn-rubro:active {
    transform: scale(0.97);
}

.btn-rubro.active {
    background: #dbdfe2;
}
/***** REDES SOCIALES   */

.red-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e95498;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.red-social i {
    font-size: 22px;
}

.red-social:hover {
    color: #c7387a;
    transform: scale(1.05);
}


/* Estilo para el select */
#emprendedor {
    width: 300px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all .2s ease-in-out;
    font-family: 'Poppins', sans-serif;
    outline: none;
    appearance: none;
    cursor: pointer;
}

/* Hover */
#emprendedor:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Focus */
#emprendedor:focus {
    border-color: #0077ff;
    box-shadow: 0 0 8px rgba(0,119,255,0.6);
}

/* Contenedor para centrar */
.section-catalogo select {
    margin-top: 15px;
}


.catalogo-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding: 10px;
}

/* Tarjetas */
.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

/* Hover */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Imagen */
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Texto */
.card-text {
    padding: 15px;
}

.card-text h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.card-text p {
    margin: 0;
    color: #666;
    font-size: 15px;
}