/* ==========================================
   ESTILOS ESPECÍFICOS - TURNO CITY
   ========================================== */

.detalle-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(180deg, #0B132B 0%, #111c3d 100%);
    color: white;
    text-align: center;
}

.detalle-hero h1 {
    font-size: 38px;
    color: #00C2CB;
    margin-bottom: 15px;
}

.detalle-hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #ccc;
}

/* BOTÓN DESCARGA MANUAL DE USUARIO */
.btn-manual {
    display: inline-block;
    background-color: #00C2CB;
    color: #0B132B;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
}

.btn-manual:hover {
    background-color: #0097a7;
    color: #fff;
    transform: translateY(-2px);
}

.btn-volver {
    display: inline-block;
    margin-bottom: 20px;
    color: #00C2CB;
    text-decoration: none;
    font-weight: 600;
}

.btn-volver:hover {
    text-decoration: underline;
}

/* SECCIÓN DE DETALLES Y CONTENIDO */
.seccion-detalle {
    padding: 80px 20px;
    background-color: #1C2541;
    color: white;
}

.contenedor-detalle {
    max-width: 1000px;
    margin: 0 auto;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.caja-info {
    background: #0B132B;
    border: 2px solid #00C2CB;
    border-radius: 12px;
    padding: 25px;
}

.caja-info h3 {
    color: #00C2CB;
    margin-bottom: 12px;
    font-size: 18px;
}

.caja-info p, 
.caja-info ul {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.caja-info ul {
    list-style: none;
    padding-left: 0;
}

.caja-info ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.caja-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00C2CB;
    font-weight: bold;
}

/* GALERÍA DE CAPTURAS DE PANTALLA */
.galeria-capturas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.captura-card {
    background: #0B132B;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 203, 0.3);
    text-align: center;
}

.captura-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.captura-card p {
    padding: 12px;
    font-size: 13px;
    color: #ccc;
}

.titulo-galeria {
    margin-top: 60px; 
    color: #00C2CB; 
    text-align: center;
}

/* ALINEACIÓN Y TAMAÑO DEL LOGO EN EL H1 */
.titulo-con-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 38px;
    color: #00C2CB;
    margin-bottom: 15px;
}

.logo-titulo-principal {
    width: 55px;
    height: auto;
    object-fit: contain;
}

/* Ajuste para pantallas móviles */
@media (max-width: 768px) {
    .titulo-con-logo {
        font-size: 28px;
        gap: 10px;
    }

    .logo-titulo-principal {
        width: 40px;
    }
}

/* CONTENEDOR DE BOTONES EN EL HERO */
.contenedor-botones-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* BOTÓN DE ACCESO AL SISTEMA */
.btn-sistema {
    display: inline-block;
    background-color: #00C2CB;
    color: #0B132B;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.4);
}

.btn-sistema:hover {
    background-color: #0097a7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 194, 203, 0.6);
}

/* BOTÓN MANUAL DE USUARIO (ESTILO SECUNDARIO) */
.btn-manual {
    display: inline-block;
    background-color: transparent;
    color: #00C2CB;
    border: 2px solid #00C2CB;
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-manual:hover {
    background-color: rgba(0, 194, 203, 0.1);
    color: #ffffff;
    border-color: #0097a7;
    transform: translateY(-2px);
}

/* ESTILOS ADICIONALES PARA TURNOCITY.CSS */

.hero-subtitulo {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 750px;
    margin: 0 auto 30px;
}

/* LLAMADO A LA ACCIÓN INFERIOR */
.cta-final-sistema {
    margin-top: 70px;
    padding: 40px 20px;
    background: #0B132B;
    border: 2px solid #00C2CB;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-final-sistema h2 {
    color: #00C2CB;
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-final-sistema p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .cta-final-sistema {
        padding: 25px 15px;
    }
    
    .cta-final-sistema h2 {
        font-size: 20px;
    }
}

/* ==========================================
   SECCIONES Y GRILLAS DE ROLES (3 COLUMNAS)
   ========================================== */

.seccion-roles {
    margin-top: 70px;
    text-align: center;
}

.titulo-seccion-roles {
    color: #00C2CB;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitulo-seccion-roles {
    color: #d1d5db;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 35px;
}

/* Grilla de 3 columnas fijas */
.grid-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Tarjeta individual */
.card-rol {
    background: #0B132B;
    border: 1px solid rgba(0, 194, 203, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-rol:hover {
    transform: translateY(-5px);
    border-color: #00C2CB;
    box-shadow: 0 8px 20px rgba(0, 194, 203, 0.25);
}

/* Contenedor de imagen más grande */
.contenedor-img-rol {
    width: 100%;
    height: 180px; /* Aumentado para que las imágenes destaquen más */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contenedor-img-rol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-rol:hover .contenedor-img-rol img {
    transform: scale(1.05);
}

/* Título y descripción */
.card-rol h3 {
    color: #00C2CB;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-rol p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================
   RESPONSIVO EN DISPOSITIVOS MÓVILES
   ========================================== */
@media (max-width: 900px) {
    .grid-roles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .grid-roles {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contenedor-img-rol {
        height: 200px;
    }
}