* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* ============= NAVBAR ============= */
.header {
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
}

/* Recuadro azul solo donde está el logo */
.logo-box {
    background-color: #1B5CFF;
    width: 200px;       
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
}

/* Parte blanca del header */
.nav-container {
    flex: 1;
    min-width: 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(14px, 2.2vw, 36px);
    gap: clamp(12px, 1.8vw, 28px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.7vw, 30px);
    min-width: 0;
    flex: 1;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: clamp(16px, 1.18vw, 20px);
    font-weight: 500;
    position: relative;
    padding: 0 6px;
    white-space: nowrap;
}
.nav-links a:hover {
    color: #1B5CFF;
}


/* Línea azul entre los enlaces */
.nav-links a::after {
    content: "";
    position: absolute;
    right: calc(clamp(16px, 1.7vw, 30px) / -2);
    top: 60%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px; 
    background-color: #1B5CFF; 
}

.nav-links .nav-item:last-child a::after,
.dropdown-menu a::after {
    display: none;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 24px);
    flex-shrink: 0;
}

.login {
    color: #0056ff;
    font-weight: 500;
    text-decoration: none;
    font-size: clamp(16px, 1.18vw, 20px);
    white-space: nowrap;
}
.login:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: #006aff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(16px, 1.15vw, 20px);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #004dcc;
}


/* ============= BOTONES UNIFICADOS ============= */
.btn-secondary,
.hero .btn-secondary,
.features .btn-secondary,
.main-features button {
    background-color: #1B5CFF;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 250px;         
    height: 55px;          
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-secondary:hover,
.hero .btn-secondary:hover,
.features .btn-secondary:hover,
.main-features button:hover {
    background-color: #004dcc;
}

/* ============= HERO ============= */
.hero {
    background: #0084FF;
    color: #fff;
    padding: 60px 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 900px;
}

.title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 10px;
}

.title span {
    color: #000;
    padding: 0 6px;
    border-radius: 4px;
}

.subtitle {
    font-size: 40px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-img img {
    width: 180px;
}

/* ============= FEATURES ============= */
.features {
    background: #ffffff;
    text-align: center;
    padding: 50px 10%;
}

.features h2 {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 35px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.feature-item {
    width: 170px;
    text-align: center;
    border-radius: 10px;
    padding: 15px 10px;
    transition: transform 0.2s ease-in-out;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 80px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.feature-item:nth-child(1),
.feature-item:nth-child(3) {
    background-color: #2897FF;
}

.feature-item:nth-child(2),
.feature-item:nth-child(4) {
    background-color: #1B5CFF;
}

.features .btn-secondary {
    margin-top: 40px;
}

/* ============= WHY TASKCOLAB ============= */
.why {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: #f0f6ff;
    padding: 80px 10%;
    position: relative;
}

.why::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 90%;
    background: #007bff;
    opacity: 0.12;
}

.why-img img {
    width: 600px;
    max-width: 100%;
    z-index: 1;
}

.why-text {
    background: #007bff;
    color: #fff;
    padding: 40px 50px;
    border-radius: 15px;
    z-index: 2;
    max-width: 450px;
}

.why-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.why-text ul {
    list-style: none;
    padding: 0;
}

.why-text li {
    font-size: 32px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-text li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

/* ============= MAIN FEATURES ============= */
.main-features {
    text-align: center;
    padding: 60px 10%;
}

.main-features h3 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 35px;
}

.main-features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: 0.3s ease;
}

.feature-card:nth-child(odd) {
    background: #1B5CFF;
}

.feature-card:nth-child(even) {
    background: #2897FF;
}

.feature-card img {
    width: 60px;
}

.feature-card p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.3;
}
.feature-card:hover {
    transform: translateY(-5px);
}

/* ============= CTA ============= */
.cta {
    background-color: #2897FF;
    color: #fff;
    text-align: center;
    padding: 60px 8%;
    border-radius: 20px;
    max-width: 1100px;
    margin: 50px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta p {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 35px;
}

.cta .btn {
    background: #fff;
    color: #007bff;
    padding: 18px 45px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cta .btn:hover {
    background: #e6f0ff;
}

/* ============= FOOTER ============= */
.footer {
    background: #1B5CFF;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 30px 0;
}

.footer .colab-black {
    color: #000;
    font-weight: 700;
}

/* ============= SECCION LOGINN ============= */
/* ==== FONDO ==== */
.login-background {
    background: #0084FF url('../img/imagenfondologin.png') center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}


/* ==== TARJETA LOGIN ==== */
.login-card {
    
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
    width: 320px;
}

.login-card h2 {
    margin-bottom: 25px;
    font-size: 26px;
    color: #000;
}

/* ==== CAMPOS ==== */
.login-card label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.login-card input {
    background-color: rgba(27, 92, 255, 0.55); 
    color: #ffffff;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    margin-bottom: 18px;
    font-size: 14px;
    outline: none;
}

.login-card input:focus {
    border-color: #ffffff; 
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7); 
    color: #ffffff;
    background-color: rgba(27, 92, 255, 0.8);
}
/* ==== BOTÓN ==== */
.login-card button {
    background-color: #1B5CFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-card button:hover {
    background-color: #004dcc;
}

/* ==== ENLACE ==== */
.register-link {
    display: block;
    margin-top: 15px;
    color: #004dcc;
    text-decoration: none;
    font-size: 16px;
}


/* ==== LOGO SUPERIOR ==== */
.logo-header {
    background: #1B5CFF;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px; 
    border-radius: 0px; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.logo-header:hover {
    background: #004dcc; 
    transform: scale(1.05); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
}

.logo-header img {
    width: 90px;
    height: auto;
}
.register-link:hover {
    text-decoration: underline;
}

/* ==================== TABLEROS ==================== */

.why-tableros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 60px 10%;
    flex-wrap: wrap;
}

/* Recuadros */
.why-box {
    width: 500px;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

/* Recuadro blanco */
.white-box img {
    width: 100%;
    height: auto;
}

/* Recuadro azul */
.blue-box {
    background-color: #1B5CFF;
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
}

.blue-box h3 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
}

.blue-box img {
    width: 90px;
    height: auto;
}

/* Hover sutil */
.white-box:hover, .blue-box:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}



/* --- FEATURES TABLEROS --- */
.features-tableros {
    background: #ffffff;
    text-align: center;
    font-size: 36px;
    padding: 60px 10%;
}

.features-grid-tableros {
    display: flex;
    flex-direction: column; /* uno debajo del otro */
    align-items: center;
    gap: 25px; /* separación entre recuadros */
}

/* Recuadro individual */
.feature-item-tableros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 500px;
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    color: #ffffff;
    cursor: pointer;
}

/* Texto dentro del recuadro */
.feature-item-tableros p {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

/* Imagen a la derecha */
.feature-item-tableros img {
    width: 100px;
    height: auto;
}
.main-features-box,
.main-features-box * {
  color: #fff !important;
}

/* Colores alternados */
.feature-item-tableros:nth-of-type(2) {
    background-color: #1B5CFF;
}
.feature-item-tableros:nth-of-type(3) {
    background-color: #2897FF;
}
.feature-item-tableros:nth-of-type(4) {
    background-color: #1B5CFF;
}

/* Hover igual que login/registro */
.feature-item-tableros:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(27, 92, 255, 0.5);
}

/* Botón final */
.features-tableros .btn-secondary {
    margin-top: 40px;
    padding: 12px 25px;
    font-size: 18px;
    background-color: #1B5CFF;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-tableros .btn-secondary:hover {
    background-color: #174ed1;
    transform: scale(1.05);
}

/* === MAIN FEATURES: un solo recuadro con texto vertical e imágenes a la derecha === */
.main-features-tableros {
    text-align: center;
    padding: 60px 0;
}

/* Recuadro azul completo */
.main-features-box {
    background-color: #1B5CFF;
    color: #fff;
    max-width: 1100px;
    width: 90%;
    max-width: Cx;
    margin: 0 auto;
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(255, 255, 255);
}

/* Título */
.main-features-box h3 {
    color:#f0f6ff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

/* Contenedor de los pasos */
.main-features-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Cada paso */
.step {
    display: flex;
    align-items: center;
    gap: 25px;
    /*justify-content: flex-start;*/
    text-align: left;
}

/* Números dentro de círculos */
.circle {
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

/* Texto de cada paso */
.step p {
    font-size: 25px;
    flex: 1;
}

/* Botón */
.main-features-tableros .btn-primary {
    margin-top: 30px;
    padding: 15px 20px;
    font-size: 18px;

}
/* Logo con hover en la esquina superior izquierda */
.logo-box-todo {
    background-color: #1B5CFF;
    width: clamp(130px, 10vw, 170px);
    flex-shrink: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-box-todo:hover {
    background: #004dcc; 
    transform: scale(1.05); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}



/* ==================== TAREAS ============================== */
/* ==== SECCIÓN WHY-TAREAS ==== */
.why-tareas {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 50px 10%;
  position: relative;
}

/* Cada bloque de tarea (parte 1 y parte 2) */
.why-tareas > div {
  flex: 1;
  text-align: left;
}

/* Línea vertical al centro */
.why-tareas::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #1B5CFF;
  left: 50%;
  transform: translateX(-50%);
}

/* Título de cada parte */
.why-tareas h3 {
  font-size: 30px;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}

/* Caja de cada fila (tarea asignada, fecha, prioridad, etc.) */
.why-box-tareas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-box-tareas img {
  width: 30px;
  height: 30px;
}

.why-box-tareas p {
  font-size: 20px;
  color: #000;
  margin: 0;
}


/* ==== SECCIÓN FUNCIONES DE TAREAS ==== */
.features-task {
  text-align: center;
  background-color: #fff;
  padding: 60px 10%;
}

.features-task-box h3:first-of-type {
  font-size: 36px;
  margin-bottom: 25px;
  color: #000;
}

.features-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin: 0 auto 25px;
  max-width: 700px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step img {
  width: 25px;
}

.step p {
  font-size: 25px;
  color: #000;
}

.features-task-box h3:last-of-type {
  font-size: 30px;
  color: #000;
  margin: 30px 0 10px;
}

.features-task button {
  background-color: #1B5CFF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px 42px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.features-task button:hover {
  background-color: #004dcc;
}

/* ==== SECCIÓN DE TRES RECUADROS AZULES ==== */
.mmain-features {
  background-color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.main-features-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item-task {
  background-color: #1B5CFF;
  border-radius: 12px;
  padding: 20px 25px;
  width: 350px;
  font-size: 30px;
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item-task :hover {
  transform: translateY(-5px);
  background-color: #004dcc;
}

.feature-item-task-task p {
  font-size: 20px;
  font-weight: 600;
  margin: 5;
  max-width: 80%;
}

.feature-item-task img {
  width: 90px;
  height: auto;
}

/* Botón debajo */
.mmain-features button {
  background-color: #1B5CFF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.mmain-features button:hover {
  background-color: #004dcc;
}

/* ================== SECCION USUARIOS ======================= */

.why-usuarios {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 60px 10%;
  gap: 50px;
}

.why-parte1-usuarios {
  flex: 1;
}

.why-parte1-usuarios h3 {
  font-size: 40px;
  color: #000;
  margin-bottom: 15px;
}

.why-parte1-usuarios p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

.why-parte2-usuarios {
  flex: 1;
  display: flex;
  justify-content: center;
  font-size: 10px;
}
.why-parte2-usuarios:hover{
    transform: translateY(-5px);
}

.why-box-usuarios {
  background-color: #f8faff;
  border: 1px solid #d9e3ff;
  border-radius: 12px;
  padding: 25px 30px;
  width: 350px;
  text-align: left;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
}

.user-header {
  display: flex;
  align-items: center;
  gap: 15px; /* espacio entre foto y texto */
  margin-bottom: 15px;
}

.user-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.user-info h3 {
  font-size: 30px;
  color: #000;
  margin: 0;
}

.user-info h4 {
  font-size: 15px;
  color: #000000;
  margin-top: 5px;
}

.why-box-usuarios ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.why-box-usuarios li {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

/* ======= SECCIÓN FEATURES (Roles y Seguridad) ======= */
.features-usuarios {
  background-color: #fff;
  padding: 60px 10%;
  text-align: center;
}

.features-grid-usuarios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

/* Títulos y descripciones generales */
.features-grid-usuarios > div:first-child {
  flex-basis: 100%;
  text-align: center;
}

.features-grid-usuarios h3 {
  font-size: 40px;
  color: #000;
  margin-bottom: 10px;
}

.features-grid-usuarios p {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

/* Tarjetas individuales */
.feature-item-usuarios {
  background-color: #f8faff;
  border: 1px solid #d9e3ff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 350px;
  text-align: left;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item-usuarios:hover {
  transform: translateY(-5px);
}

.feature-item-usuarios img {
  width: 60px;
  height: 60px;
}

.feature-item-usuarios h3 {
  font-size: 25px;
  color: #000;
  margin-bottom: 0px;
}

.feature-item-usuarios p {
  font-size: 18px;
  color: #444;
  text-align: justify;
}

/* ======= BOTÓN ======= */
.btn-secondary {
  background-color: #1b5cff;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #0d47d4;
}

/* ====== SECCIÓN TIPOS DE REPORTES ====== */
.features-reportes {
  background-color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.features-grid-reportes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.features-grid-reportes h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Contenedor principal de los ítems */
.feactures-item-repo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Cada ítem individual */
.item-header-repo {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f8f9ff;
  border: 2px solid #d3dcff;
  border-radius: 12px;
  padding: 20px 25px;
  width: 300px;
  transition: all 0.3s ease;
  text-align: left;
}

.item-header-repo:hover {
  background-color: #e9efff;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Imagen de cada tipo de reporte */
.item-header-repo img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* Texto al lado derecho */
.item-header-repo p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* =================== SECCIÓN PRINCIPAL (VENTAJAS DE REPORTES) ============== */
.features-reportes {
  background-color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.features-grid-reportes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

/* Título principal */
.features-grid-reportes h3 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Contenedor de los ítems */
.feactures-item-repo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Cada recuadro (Tipo de reporte) */
.item-header-repo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #cfd6ff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 230px;
  height: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.item-header-repo:hover {
  transform: translateY(-5px);
  border-color: #6a8dff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Imagen arriba */
.item-header-repo img {
  width: 85px;
  height: 85px;
  margin-bottom: 10px;
}

/* Texto debajo */
.item-header-repo p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
  text-align: center;
}

/* ====== SECCIÓN PRINCIPAL (VENTAJAS DE REPORTES) ====== */
.main-features-reportes {
  text-align: center;
  padding: 60px 10%;
  background-color: #fff;
}

.main-features-reportes h3 {
  font-size: 30px;

  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.main-features-reportes p {
  font-size: 25px;
  color: #333;
  margin-bottom: 35px;
}

/* Lista de ventajas */
.main-features-list-repo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Cada tarjeta azul */
.feature-card-repo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  padding: 20px 35px;
  border-radius: 10px;
  width: 650px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-card-repo:hover {
  transform: scale(1.03);
}

/* Colores alternos */
.feature-card-repo:nth-child(1),
.feature-card-repo:nth-child(3) {
  background: linear-gradient(90deg, #36A0FF, #00A2FF); /* azul claro */
}

.feature-card-repo:nth-child(2),
.feature-card-repo:nth-child(4) {
  background: linear-gradient(90deg, #004DFF, #0029FF); /* azul más oscuro */
}

/* Imagen al lado izquierdo */
.feature-card-repo img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* Texto a la derecha */
.feature-card-repo p {
  color:white;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

/* Botón */
.main-features-reportes .btn-primary {
  background: linear-gradient(90deg, #0072FF, #0041FF);
  color: #fff;
  border: none;
  padding: 15px 75px;
  border-radius: 8px;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-features-reportes .btn-primary:hover {
  background: linear-gradient(90deg, #0055CC, #002EBB);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}





/* ========================== MENUS DE LOS NAVBAR ================================*/
/* ======== MENÚ DESPLEGABLE NAVBAR ======== */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
}

.dropdown-toggle,
.dropdown-menu a:hover h4,
.dropdown-menu a:hover p a:hover {
  color: #1b5cff; /* azul de tu diseño */
  
}


.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* justo debajo del enlace */
  left: 50%; /* empieza en el centro horizontal */
  transform: translateX(-50%); /* lo mueve para centrarlo */
  background-color: #ffffff; /* o el color de fondo que uses */
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  min-width: 230px; /* puedes ajustarlo si quieres */
  z-index: 1000;
  display: none; /* por defecto oculto */
  transform: translateX(-50%) translateX(0px);
}

.dropdown-menu h4 {
  font-size: 16px;
  text-align: center;
  color: #000;
  margin: 0;
}

.dropdown-menu p {
  margin-top: 4px;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}


/* ESTADO ACTIVO */
.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

/* Quita cualquier borde o línea en los submenús */
.dropdown-menu,
.dropdown-menu * {
  border: none !important;
  box-shadow: none !important;
}

/* Si la línea viene de un pseudo-elemento (::before o ::after) */
.dropdown-menu a::before,
.dropdown-menu a::after,
.dropdown-menu h4::before,
.dropdown-menu h4::after {
  content: none !important;
  border: none !important;
}

/* Además, aseguramos que no tenga un underline azul */
.dropdown-menu a {
  text-decoration: none !important;
}

.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: #ffffff;
    color: #333;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    min-width: 180px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

/* Variantes */
.toast.success { background: #e8f7e9; border-color: #4caf50; color: #256d2b; }
.toast.error { background: #fde7e7; border-color: #e53935; color: #9c1f1f; }
.toast.info { background: #e8f0fe; border-color: #3b82f6; color: #1e40af; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.toast.closing { animation: fadeOut 0.25s forwards; }
@keyframes fadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-10px); } }

.checkbox-line {
    display: flex;
    gap: 50px; /* Separación entre checkbox y texto */
}
.checkbox-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007bff;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 35px; /* espacio para el SVG */
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 9px;
  top: 35%;
  transform: translateY(-50%) scale(0.8); /* reduce tamaño y centra vertical */
  cursor: pointer;
  color: #000000; /* color del SVG */
  width: 30px;  /* ancho más pequeño */
  height: 30px; /* altura más pequeña */
}

.login-password-wrapper {
  position: relative;
}

.login-password-wrapper input {
  width: 100%;
  padding-right: 35px; /* espacio para el SVG */
}

.login-password-wrapper .login-toggle-password {
  position: absolute;
  right: 9px;
  top: 55%;
  transform: translateY(-50%) scale(0.8); /* reduce tamaño y centra vertical */
  cursor: pointer;
  color: #000000; /* color del SVG */
  width: 30px;  /* ancho más pequeño */
  height: 30px; /* altura más pequeña */
}







































/* ==================== RESPONSIVE DESIGN ==================== */
/* ==================== RESPONSIVE FLUIDO PARA LAPTOPS MEDIANAS (1024px - 1280px) ==================== */
@media (max-width: 1280px) and (min-width: 1025px) {
    /* Header */
    .nav-container { padding: 0 18px; gap: 16px; }
    .nav-links { gap: 18px; }
    .nav-actions { gap: 14px; }
    .logo-box-todo { width: 130px; }
    .logo { width: 84px; }
    .nav-links a,
    .login,
    .btn-primary { font-size: 16px; }

    .nav-links a::after {
      right: -9px; /* antes estaba -40px */
      height: 35px; /* opcional, para ajustar visual */
    }

    /* Hero */
    .hero { padding: clamp(40px, 5vw, 60px) 8%; }
    .title { font-size: clamp(48px, 5vw, 60px); }
    .subtitle { font-size: clamp(24px, 3vw, 28px); }
    .hero-img img { width: clamp(120px, 12vw, 150px); }

    /* Features */
    .features-grid { gap: clamp(20px, 3vw, 30px); }
    .feature-item { width: clamp(180px, 18vw, 200px); }

    /* Why section */
    .why { gap: clamp(30px, 4vw, 50px); padding: clamp(40px, 5vw, 60px) 8%; }
    .why-img img { width: clamp(400px, 40vw, 500px); }
    .why-text { padding: clamp(25px, 3vw, 35px) clamp(30px, 4vw, 40px); font-size: clamp(16px, 1.5vw, 18px); }

    /* Main features cards */
    .feature-card { gap: clamp(10px, 2vw, 15px); }
    .feature-card img { width: clamp(45px, 4vw, 55px); }

    /* CTA */
    .cta { padding: clamp(40px, 5vw, 50px) 8%; }
    .cta p { font-size: clamp(28px, 3vw, 32px); }
    .cta .btn { font-size: clamp(18px, 2vw, 20px); padding: clamp(12px, 1.5vw, 15px) clamp(25px, 3vw, 35px); }

    /* Footer */
    .footer { font-size: clamp(16px, 1.5vw, 18px); padding: clamp(20px, 2vw, 25px) 0; }

    /* Tableros y tareas */
    .why-tableros, .why-tareas, .features-task, .features-tableros, .main-features-tableros { padding: clamp(40px, 5vw, 50px) 8%; }
    .feature-item-tableros, .feature-item-task, .feature-card-repo { width: auto; max-width: 90%; }

    /* Login */
    .login-card { width: clamp(320px, 28vw, 350px); }
    .logo-header img { width: clamp(70px, 6vw, 80px); }
}

/* Pantallas pequeñas (celulares) */
@media (max-width: 768px) {
    /* Header */
    .header {
        flex-direction: column;
        height: auto;
    }

    .nav-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
    }

    .nav-links a::after {
        display: none; /* Quita las líneas verticales en móvil */
    }

    .nav-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .hero-img img {
        width: 120px;
        margin-top: 20px;
    }

    .title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 22px;
    }

    /* Features */
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
        max-width: 250px;
    }

    /* Why section */
    .why {
        flex-direction: column;
        gap: 30px;
        padding: 40px 5%;
    }

    .why-img img {
        width: 100%;
        max-width: 400px;
    }

    .why-text {
        padding: 25px;
        font-size: 16px;
    }

    /* Main features */
    .feature-card {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .feature-card img {
        width: 50px;
    }

    .module-info-grid,
    .module-flow-list {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta p {
        font-size: 26px;
    }

    .cta .btn {
        font-size: 18px;
        padding: 12px 25px;
    }

    /* Login */
    .login-card {
        width: 90%;
        padding: 30px 25px;
    }

    .logo-header img {
        width: 70px;
    }
}

/* Pantallas medianas (tablets) */
@media (max-width: 1024px) {
    .header {
        height: auto;
        align-items: stretch;
    }

    .nav-links {
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        padding: 18px 24px;
    }

    .nav-actions {
        justify-content: center;
    }

    .hero .title {
        font-size: 48px;
    }

    .why {
        gap: 40px;
    }

    .why-text {
        padding: 30px;
    }

    .module-info-grid,
    .module-flow-list {
        grid-template-columns: 1fr 1fr;
    }
}

.module-info {
  background: #ffffff;
  padding: 70px 10%;
}

.module-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.module-info-card {
  background: #f8faff;
  border: 1px solid #d9e3ff;
  border-radius: 10px;
  padding: 26px;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(27, 92, 255, 0.12);
}

.module-info-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.module-info-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.module-info-card p {
  font-size: 19px;
  line-height: 1.45;
  color: #333;
}

.module-flow {
  background: #f0f6ff;
  padding: 70px 10%;
  text-align: center;
}

.module-flow h3 {
  font-size: 34px;
  margin-bottom: 28px;
}

.module-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
}

.module-flow-step {
  background: #1B5CFF;
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  min-height: 150px;
}

.module-flow-step strong {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.module-flow-step p {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .header {
    height: auto;
    align-items: stretch;
  }

  .logo-box-todo {
    width: 100%;
    height: 100px;
  }

  .nav-container {
    flex-direction: column;
    padding: 18px 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    justify-content: center;
  }

  .module-info-grid,
  .module-flow-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    flex-direction: column;
  }

  .module-info-grid,
  .module-flow-list {
    grid-template-columns: 1fr;
  }
}
