/* Estilos específicos para el modal de herramientas */

.herramientas-modal .modal-container {
    max-width: 800px;
    width: 90%;
    animation: herramientasFadeIn 0.3s ease;
    font-family: 'TT Interfaces', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.herramientas-modal .modal-message {
    padding: 0;
    text-align: left;
}

/* Header con icono y título */
.herramientas-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #FFD700;
}

.herramientas-icon {
    margin-right: 15px;
}

.herramientas-icon i {
    font-size: 32px;
    color: #242326;
}

.herramientas-title h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
}

.herramientas-title p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #666;
    font-family: inherit;
}

/* Contenido principal en dos columnas */
.herramientas-content {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.herramientas-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.herramientas-device {
    margin-bottom: 0;
}

.herramientas-device i {
    font-size: 100px;
    color: #242326;
}

.herramientas-right {
    flex: 1;
}

/* Instrucciones */
.herramientas-instructions {
    margin-bottom: 0;
}

.herramientas-instructions h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.herramientas-instructions h4 i {
    color: #242326;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: inherit;
}

.step-number {
    background: #242326;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
    font-family: inherit;
}


/* Sección de descarga */
.herramientas-download-section {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #E0E0E0;
}

.herramientas-download-btn {
    background: #242326;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
}

.herramientas-download-btn:hover {
    background: #747374;
    transform: translateY(-1px);
    text-decoration: none;
}

.herramientas-download-btn:visited,
.herramientas-download-btn:focus,
.herramientas-download-btn:active {
    color: white;
    text-decoration: none;
    outline: none;
}

.herramientas-download-btn i {
    font-size: 18px;
}

.download-note {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-style: italic;
    font-family: inherit;
}

/* Animación específica para herramientas */
@keyframes herramientasFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .herramientas-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .herramientas-modal .modal-container {
        width: 95%;
    }
    
    .herramientas-device i {
        font-size: 60px;
    }
} 